Skip to content

Commit

Permalink
Update version 0.5.2 -> 0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudant-sdks-automation committed Jun 21, 2023
1 parent cf5d9aa commit 4c2249f
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.5.2
current_version = 0.5.3
commit = True
message = Update version {current_version} -> {new_version}
parse = ^(?P<major>0|[1-9]\d*)\.(?P<minor>0|[1-9]\d*)\.(?P<patch>0|[1-9]\d*)(?:-(?P<prerelease>(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+(?P<buildmetadata>[0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[![Release](https://img.shields.io/github/v/release/IBM/cloudant-java-sdk?include_prereleases&sort=semver)](https://github.com/IBM/cloudant-java-sdk/releases/latest)
[![Docs](https://img.shields.io/static/v1?label=Javadoc&message=latest&color=blue)](https://ibm.github.io/cloudant-java-sdk/)

# IBM Cloudant Java SDK Version 0.5.2
# IBM Cloudant Java SDK Version 0.5.3

IBM Cloudant Java SDK is a client library that interacts with the
[IBM Cloudant APIs](https://cloud.ibm.com/apidocs/cloudant?code=java).
Expand Down Expand Up @@ -103,7 +103,7 @@ project:

## Installation

The current version of this SDK is: 0.5.2
The current version of this SDK is: 0.5.3

The project artifacts are published on the
[Maven Central](https://repo1.maven.org/maven2/com/ibm/cloud/cloudant/).
Expand All @@ -130,7 +130,7 @@ Extend *Maven dependencies* in your `pom.xml` file with the `cloudant` library.
<dependency>
<groupId>com.ibm.cloud</groupId>
<artifactId>cloudant</artifactId>
<version>0.5.2</version>
<version>0.5.3</version>
</dependency>
</dependencies>
```
Expand All @@ -142,7 +142,7 @@ Add the `cloudant` library to the *dependencies* in your `build.gradle` file:
```groovy
dependencies {
// other dependencies...
implementation group: "com.ibm.cloud", name: "cloudant", version: "0.5.2"
implementation group: "com.ibm.cloud", name: "cloudant", version: "0.5.3"
}
```

Expand Down
6 changes: 3 additions & 3 deletions modules/cloudant/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.ibm.cloud</groupId>
<artifactId>cloudant-parent</artifactId>
<version>0.5.2</version>
<version>0.5.3</version>
<relativePath>../..</relativePath>
</parent>

Expand All @@ -16,12 +16,12 @@
<dependency>
<groupId>com.ibm.cloud</groupId>
<artifactId>cloudant-common</artifactId>
<version>0.5.2</version>
<version>0.5.3</version>
</dependency>
<dependency>
<groupId>com.ibm.cloud</groupId>
<artifactId>cloudant-common</artifactId>
<version>0.5.2</version>
<version>0.5.3</version>
<type>test-jar</type>
<classifier>tests</classifier>
<scope>test</scope>
Expand Down
4 changes: 2 additions & 2 deletions modules/common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<parent>
<artifactId>cloudant-parent</artifactId>
<groupId>com.ibm.cloud</groupId>
<version>0.5.2</version>
<version>0.5.3</version>
<relativePath>../..</relativePath>
</parent>

<groupId>com.ibm.cloud</groupId>
<artifactId>cloudant-common</artifactId>
<version>0.5.2</version>
<version>0.5.3</version>

<name>Cloudant Common Library</name>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion modules/coverage-reports/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>cloudant-parent</artifactId>
<groupId>com.ibm.cloud</groupId>
<version>0.5.2</version>
<version>0.5.3</version>
<relativePath>../..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion modules/examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>cloudant-parent</artifactId>
<groupId>com.ibm.cloud</groupId>
<version>0.5.2</version>
<version>0.5.3</version>
<relativePath>../..</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<url>https://github.com/IBM/cloudant-java-sdk</url>

<groupId>com.ibm.cloud</groupId>
<version>0.5.2</version>
<version>0.5.3</version>
<packaging>pom</packaging>

<properties>
Expand Down

0 comments on commit 4c2249f

Please sign in to comment.