Skip to content

Commit 8f70e83

Browse files
chore(ci): bump version to 2.1.0 (#1904)
Co-authored-by: Powertools for AWS Lambda (Java) Bot <[email protected]>
1 parent cf01e91 commit 8f70e83

File tree

42 files changed

+48
-48
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+48
-48
lines changed

README.md

Lines changed: 3 additions & 3 deletions

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</version>
23+
<version>2.1.0</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</version>
8+
<version>2.1.0</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</version>
6+
<version>2.1.0</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</version>
9+
<version>2.1.0</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</version>
7+
<version>2.1.0</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'
33-
aspect 'software.amazon.lambda:powertools-logging-log4j:2.0.0'
34-
aspect 'software.amazon.lambda:powertools-metrics:2.0.0'
32+
aspect 'software.amazon.lambda:powertools-tracing:2.1.0'
33+
aspect 'software.amazon.lambda:powertools-logging-log4j:2.1.0'
34+
aspect 'software.amazon.lambda:powertools-metrics:2.1.0'
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")
19-
aspect("software.amazon.lambda:powertools-logging-log4j:2.0.0")
20-
aspect("software.amazon.lambda:powertools-metrics:2.0.0")
18+
aspect("software.amazon.lambda:powertools-tracing:2.1.0")
19+
aspect("software.amazon.lambda:powertools-logging-log4j:2.1.0")
20+
aspect("software.amazon.lambda:powertools-metrics:2.1.0")
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</version>
7+
<version>2.1.0</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</version>
7+
<version>2.1.0</version>
88
<artifactId>powertools-examples-core-utilities-sam</artifactId>
99
<packaging>jar</packaging>
1010

0 commit comments

Comments
 (0)