Skip to content

Commit b314321

Browse files
chore(ci): bump version to 2.0.0-RC1 (#1875)
Co-authored-by: Powertools for AWS Lambda (Java) Bot <[email protected]>
1 parent e3d4c7e commit b314321

File tree

40 files changed

+46
-46
lines changed

40 files changed

+46
-46
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ Powertools for AWS Lambda (Java) is available in Maven Central. You can use your
2222
<dependency>
2323
<groupId>software.amazon.lambda</groupId>
2424
<artifactId>powertools-tracing</artifactId>
25-
<version>2.0.0-SNAPSHOT</version>
25+
<version>2.0.0-RC1</version>
2626
</dependency>
2727
<dependency>
2828
<groupId>software.amazon.lambda</groupId>
2929
<artifactId>powertools-logging</artifactId>
30-
<version>2.0.0-SNAPSHOT</version>
30+
<version>2.0.0-RC1</version>
3131
</dependency>
3232
<dependency>
3333
<groupId>software.amazon.lambda</groupId>
3434
<artifactId>powertools-metrics</artifactId>
35-
<version>2.0.0-SNAPSHOT</version>
35+
<version>2.0.0-RC1</version>
3636
</dependency>
3737
...
3838
</dependencies>

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<groupId>software.amazon.lambda</groupId>
2222
<artifactId>powertools-examples</artifactId>
23-
<version>2.0.0-SNAPSHOT</version>
23+
<version>2.0.0-RC1</version>
2424
<packaging>pom</packaging>
2525

2626
<name>Powertools for AWS Lambda (Java) - Examples</name>

examples/powertools-examples-batch/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<groupId>software.amazon.lambda.examples</groupId>
8-
<version>2.0.0-SNAPSHOT</version>
8+
<version>2.0.0-RC1</version>
99
<artifactId>powertools-examples-batch</artifactId>
1010
<packaging>jar</packaging>
1111
<name>Powertools for AWS Lambda (Java) - Examples - Batch</name>

examples/powertools-examples-cloudformation/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44

55
<groupId>software.amazon.lambda.examples</groupId>
6-
<version>2.0.0-SNAPSHOT</version>
6+
<version>2.0.0-RC1</version>
77
<artifactId>powertools-examples-cloudformation</artifactId>
88
<packaging>jar</packaging>
99

examples/powertools-examples-core-utilities/cdk/app/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>software.amazon.lambda.examples</groupId>
77
<!-- TODO TODO TODO this should build from SNAPSHOT, but it doesn't, because the snapshots
88
don't appear in the docker environment CDK builds it in in our CDK tests. How to procede? V2 blocker -->
9-
<version>2.0.0-SNAPSHOT</version>
9+
<version>2.0.0-RC1</version>
1010
<artifactId>powertools-examples-core-utilities-cdk</artifactId>
1111
<packaging>jar</packaging>
1212

examples/powertools-examples-core-utilities/cdk/infra/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>software.amazon.lambda.examples</groupId>
66
<artifactId>cdk</artifactId>
7-
<version>2.0.0-SNAPSHOT</version>
7+
<version>2.0.0-RC1</version>
88
<properties>
99
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1010
<cdk.version>2.162.1</cdk.version>

examples/powertools-examples-core-utilities/gradle/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ dependencies {
2929
implementation 'com.amazonaws:aws-lambda-java-events:3.11.0'
3030
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.2'
3131
implementation 'org.aspectj:aspectjrt:1.9.20.1'
32-
aspect 'software.amazon.lambda:powertools-tracing:2.0.0-SNAPSHOT'
33-
aspect 'software.amazon.lambda:powertools-logging-log4j:2.0.0-SNAPSHOT'
34-
aspect 'software.amazon.lambda:powertools-metrics:2.0.0-SNAPSHOT'
32+
aspect 'software.amazon.lambda:powertools-tracing:2.0.0-RC1'
33+
aspect 'software.amazon.lambda:powertools-logging-log4j:2.0.0-RC1'
34+
aspect 'software.amazon.lambda:powertools-metrics:2.0.0-RC1'
3535
}
3636

examples/powertools-examples-core-utilities/kotlin/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ dependencies {
1515
implementation("com.amazonaws:aws-lambda-java-events:3.11.3")
1616
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.15.2")
1717
implementation("org.aspectj:aspectjrt:1.9.20.1")
18-
aspect("software.amazon.lambda:powertools-tracing:2.0.0-SNAPSHOT")
19-
aspect("software.amazon.lambda:powertools-logging-log4j:2.0.0-SNAPSHOT")
20-
aspect("software.amazon.lambda:powertools-metrics:2.0.0-SNAPSHOT")
18+
aspect("software.amazon.lambda:powertools-tracing:2.0.0-RC1")
19+
aspect("software.amazon.lambda:powertools-logging-log4j:2.0.0-RC1")
20+
aspect("software.amazon.lambda:powertools-metrics:2.0.0-RC1")
2121
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.9.24")
2222
}
2323

examples/powertools-examples-core-utilities/sam-graalvm/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<name>Powertools for AWS Lambda (Java) - Examples - Core Utilities (logging, tracing, metrics) with SAM GraalVM</name>
66
<groupId>software.amazon.lambda.examples</groupId>
7-
<version>2.0.0-SNAPSHOT</version>
7+
<version>2.0.0-RC1</version>
88
<artifactId>powertools-examples-core-utilities-sam-graalvm</artifactId>
99
<packaging>jar</packaging>
1010

examples/powertools-examples-core-utilities/sam/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<name>Powertools for AWS Lambda (Java) - Examples - Core Utilities (logging, tracing, metrics) with SAM</name>
66
<groupId>software.amazon.lambda.examples</groupId>
7-
<version>2.0.0-SNAPSHOT</version>
7+
<version>2.0.0-RC1</version>
88
<artifactId>powertools-examples-core-utilities-sam</artifactId>
99
<packaging>jar</packaging>
1010

0 commit comments

Comments
 (0)