Skip to content

ci: release v0.1.0-beta #56

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ Powertools is available in Maven Central. You can use your favourite dependency
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-tracing</artifactId>
<version>YOUR_REQUIRED_VERSION</version>
<version>0.1.0-beta</version>
</dependency>
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-logging</artifactId>
<version>YOUR_REQUIRED_VERSION</version>
<version>0.1.0-beta</version>
</dependency>
...
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions docs/content/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ Powertools dependencies are available in Maven Central. You can use your favouri
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-tracing</artifactId>
<version>YOUR_REQUIRED_VERSION</version>
<version>0.1.0-beta</version>
</dependency>
<dependency>
<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-logging</artifactId>
<version>YOUR_REQUIRED_VERSION</version>
<version>0.1.0-beta</version>
</dependency>
...
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>software.amazon.lambda</groupId>
<artifactId>powertools-parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0-beta</version>
<packaging>pom</packaging>

<name>AWS Lambda Powertools Java library Parent</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0-beta</version>
</parent>

<name>AWS Lambda Powertools Java library Core</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-logging/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0-beta</version>
</parent>

<name>AWS Lambda Powertools Java library Logging</name>
Expand Down
2 changes: 1 addition & 1 deletion powertools-tracing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<artifactId>powertools-parent</artifactId>
<groupId>software.amazon.lambda</groupId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.0-beta</version>
</parent>

<name>AWS Lambda Powertools Java library Tracing</name>
Expand Down