Skip to content

Commit d28c9d9

Browse files
chore:prep release 1.19.0 (#1794)
Co-authored-by: sthulb <[email protected]>
1 parent 50fdeb3 commit d28c9d9

File tree

32 files changed

+41
-36
lines changed

32 files changed

+41
-36
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ This project follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) fo
88

99
## [Unreleased]
1010

11+
## [1.19.0] - 2025-03-07
12+
13+
<PLEASE REMEBER TO UPDATE CHANGE LOG>
14+
15+
1116
## [1.19.0-SNAPSHOT] - 2025-02-25
1217

1318
<PLEASE REMEBER TO UPDATE CHANGE LOG>

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.19.0-SNAPSHOT</version>
23+
<version>1.19.0</version>
2424
</dependency>
2525
<dependency>
2626
<groupId>software.amazon.lambda</groupId>
2727
<artifactId>powertools-logging</artifactId>
28-
<version>1.19.0-SNAPSHOT</version>
28+
<version>1.19.0</version>
2929
</dependency>
3030
<dependency>
3131
<groupId>software.amazon.lambda</groupId>
3232
<artifactId>powertools-metrics</artifactId>
33-
<version>1.19.0-SNAPSHOT</version>
33+
<version>1.19.0</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.19.0-SNAPSHOT/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.19.0/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.19.0-SNAPSHOT</version>
23+
<version>1.19.0</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.19.0-SNAPSHOT</version>
8+
<version>1.19.0</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.19.0-SNAPSHOT</version>
6+
<version>1.19.0</version>
77
<artifactId>powertools-examples-cloudformation</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.19.0-SNAPSHOT</version>
7+
<version>1.19.0</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.19.0-SNAPSHOT'
32-
aspect 'software.amazon.lambda:powertools-logging:1.19.0-SNAPSHOT'
33-
aspect 'software.amazon.lambda:powertools-metrics:1.19.0-SNAPSHOT'
31+
aspect 'software.amazon.lambda:powertools-tracing:1.19.0'
32+
aspect 'software.amazon.lambda:powertools-logging:1.19.0'
33+
aspect 'software.amazon.lambda:powertools-metrics:1.19.0'
3434
}
3535

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.19.0-SNAPSHOT</version>
6+
<version>1.19.0</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.19.0-SNAPSHOT</version>
6+
<version>1.19.0</version>
77
<artifactId>powertools-examples-core-serverless</artifactId>
88
<packaging>jar</packaging>
99

examples/powertools-examples-core/terraform/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.19.0-SNAPSHOT</version>
6+
<version>1.19.0</version>
77
<artifactId>powertools-examples-core-terraform</artifactId>
88
<packaging>jar</packaging>
99

0 commit comments

Comments
 (0)