Skip to content

Commit

Permalink
chore: bump minor version number to 1.3.0-SNAPSHOT in relevant places (
Browse files Browse the repository at this point in the history
  • Loading branch information
patrzhan committed Nov 11, 2023
1 parent 588be27 commit 45934c8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ComponentDependencies:
DependencyType: HARD
Manifests:
- Artifacts:
- URI: "file:target/aws-greengrass-testing-components-streammanager-1.2.0-SNAPSHOT.jar"
- URI: "file:target/aws-greengrass-testing-components-streammanager-1.3.0-SNAPSHOT.jar"
Lifecycle:
Run: |
java -jar -Ds3.bucketName={configuration:/bucketName} -Ds3.key={configuration:/key} -Dfile.input={configuration:/inputFile} {artifacts:path}/aws-greengrass-testing-components-streammanager-1.2.0-SNAPSHOT.jar
java -jar -Ds3.bucketName={configuration:/bucketName} -Ds3.key={configuration:/key} -Dfile.input={configuration:/inputFile} {artifacts:path}/aws-greengrass-testing-components-streammanager-1.3.0-SNAPSHOT.jar
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ recipe template. The only difference being the URI portion:
``` yaml
Manifests:
- Artifacts:
- URI: "file:target/aws-greengrass-testing-examples-component-1.2.0-SNAPSHOT.jar"
- URI: "file:target/aws-greengrass-testing-examples-component-1.3.0-SNAPSHOT.jar"
```

### Integration Test Definition
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ComponentConfiguration:
- "say/ping"
Manifests:
- Artifacts:
- URI: "file:target/aws-greengrass-testing-examples-component-1.2.0-SNAPSHOT.jar"
- URI: "file:target/aws-greengrass-testing-examples-component-1.3.0-SNAPSHOT.jar"
Lifecycle:
Run: |
java -jar {artifacts:path}/aws-greengrass-testing-examples-component-1.2.0-SNAPSHOT.jar
java -jar {artifacts:path}/aws-greengrass-testing-examples-component-1.3.0-SNAPSHOT.jar
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public void clearContext(final Scenario scenario) {

private String getOTFVersionLogContent() {
final String otfVersion = Optional.ofNullable(LoggerSteps.class.getPackage().getImplementationVersion())
.orElse("1.2.0-SNAPSHOT");
.orElse("1.3.0-SNAPSHOT");
return String.format("%s-%s", OTF_VERSION_PREFIX, otfVersion);
}
}
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
</modules>

<properties>
<revision>1.2.0-SNAPSHOT</revision>
<revision>1.3.0-SNAPSHOT</revision>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
Expand Down

0 comments on commit 45934c8

Please sign in to comment.