Skip to content

Commit c69b22c

Browse files
chore(ci): bump version to 1.20.2 (#1855)
Co-authored-by: Powertools for AWS Lambda (Java) Bot <[email protected]>
1 parent 70b8183 commit c69b22c

File tree

32 files changed

+39
-39
lines changed

32 files changed

+39
-39
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ Powertools for AWS Lambda (Java) is available in Maven Central. You can use your
2020
<dependency>
2121
<groupId>software.amazon.lambda</groupId>
2222
<artifactId>powertools-tracing</artifactId>
23-
<version>1.20.1</version>
23+
<version>1.20.2</version>
2424
</dependency>
2525
<dependency>
2626
<groupId>software.amazon.lambda</groupId>
2727
<artifactId>powertools-logging</artifactId>
28-
<version>1.20.1</version>
28+
<version>1.20.2</version>
2929
</dependency>
3030
<dependency>
3131
<groupId>software.amazon.lambda</groupId>
3232
<artifactId>powertools-metrics</artifactId>
33-
<version>1.20.1</version>
33+
<version>1.20.2</version>
3434
</dependency>
3535
...
3636
</dependencies>
@@ -217,7 +217,7 @@ More info [here](https://github.com/aws-powertools/powertools-lambda-java/pull/1
217217

218218
## Examples
219219

220-
See the latest release of the **[examples](https://github.com/aws-powertools/powertools-lambda-java/tree/v1.20.1/examples)** for example projects showcasing usage of different utilities.
220+
See the latest release of the **[examples](https://github.com/aws-powertools/powertools-lambda-java/tree/v1.20.2/examples)** for example projects showcasing usage of different utilities.
221221

222222
Have a demo project to contribute which showcase usage of different utilities from powertools? We are happy to accept it [here](CONTRIBUTING.md#security-issue-notifications).
223223

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>1.20.1</version>
23+
<version>1.20.2</version>
2424
<packaging>pom</packaging>
2525

2626
<name>Powertools for AWS Lambda (Java) library 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>1.20.1</version>
8+
<version>1.20.2</version>
99
<artifactId>powertools-examples-batch</artifactId>
1010
<packaging>jar</packaging>
1111
<name>Powertools for AWS Lambda (Java) library 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>1.20.1</version>
6+
<version>1.20.2</version>
77
<artifactId>powertools-examples-cloudformation</artifactId>
88
<packaging>jar</packaging>
99

examples/powertools-examples-core/cdk/app/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>1.17.0</version>
6+
<version>1.20.2</version>
77
<artifactId>powertools-examples-core-cdk</artifactId>
88
<packaging>jar</packaging>
99

examples/powertools-examples-core/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>1.20.1</version>
7+
<version>1.20.2</version>
88
<properties>
99
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1010
<cdk.version>2.178.1</cdk.version>

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ dependencies {
2828
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.2'
2929
implementation 'com.amazonaws:aws-lambda-java-events:3.11.0'
3030
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.2'
31-
aspect 'software.amazon.lambda:powertools-tracing:1.20.1'
32-
aspect 'software.amazon.lambda:powertools-logging:1.20.1'
33-
aspect 'software.amazon.lambda:powertools-metrics:1.20.1'
31+
aspect 'software.amazon.lambda:powertools-tracing:1.20.2'
32+
aspect 'software.amazon.lambda:powertools-logging:1.20.2'
33+
aspect 'software.amazon.lambda:powertools-metrics:1.20.2'
3434
}
3535

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ dependencies {
1414
implementation("com.fasterxml.jackson.core:jackson-databind:2.17.2")
1515
implementation("com.amazonaws:aws-lambda-java-events:3.11.0")
1616
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.2")
17-
aspect("software.amazon.lambda:powertools-tracing:1.20.1")
18-
aspect("software.amazon.lambda:powertools-logging:1.20.1")
19-
aspect("software.amazon.lambda:powertools-metrics:1.20.1")
17+
aspect("software.amazon.lambda:powertools-tracing:1.20.2")
18+
aspect("software.amazon.lambda:powertools-logging:1.20.2")
19+
aspect("software.amazon.lambda:powertools-metrics:1.20.2")
2020
testImplementation("junit:junit:4.13.2")
2121
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
2222
}

examples/powertools-examples-core/sam/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>1.20.1</version>
6+
<version>1.20.2</version>
77
<artifactId>powertools-examples-core-sam</artifactId>
88
<packaging>jar</packaging>
99

examples/powertools-examples-core/serverless/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>1.20.1</version>
6+
<version>1.20.2</version>
77
<artifactId>powertools-examples-core-serverless</artifactId>
88
<packaging>jar</packaging>
99

0 commit comments

Comments
 (0)