Skip to content

Commit

Permalink
Update version 0.8.4 -> 0.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudant-sdks-automation committed May 7, 2024
1 parent 6b9b134 commit c8819cd
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 19 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.8.4
current_version = 0.8.5
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
20 changes: 10 additions & 10 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.8.4
# IBM Cloudant Java SDK Version 0.8.5

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 @@ -124,7 +124,7 @@ project:

## Installation

The current version of this SDK is: 0.8.4
The current version of this SDK is: 0.8.5

The project artifacts are published on the
[Maven Central](https://repo1.maven.org/maven2/com/ibm/cloud/cloudant/).
Expand All @@ -151,7 +151,7 @@ Extend *Maven dependencies* in your `pom.xml` file with the `cloudant` library.
<dependency>
<groupId>com.ibm.cloud</groupId>
<artifactId>cloudant</artifactId>
<version>0.8.4</version>
<version>0.8.5</version>
</dependency>
</dependencies>
```
Expand All @@ -163,7 +163,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.8.4"
implementation group: "com.ibm.cloud", name: "cloudant", version: "0.8.5"
}
```

Expand Down Expand Up @@ -741,7 +741,7 @@ You have deleted the document.

#### Further code examples

For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-java-sdk/tree/v0.8.4/examples#examples-for-java).
For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-java-sdk/tree/v0.8.5/examples#examples-for-java).

### Error handling

Expand Down Expand Up @@ -838,7 +838,7 @@ The changes follower requires the client to have HTTP timeouts of at least 1 min
instantiation if it is insufficient. The default client configuration has sufficiently long timeouts.

For use-cases where these configuration limitations are deemed too restrictive then it is recommended to
write code to use the SDK's [POST `_changes` API](https://github.com/IBM/cloudant-java-sdk/tree/v0.8.4/examples#postchanges) instead of the follower.
write code to use the SDK's [POST `_changes` API](https://github.com/IBM/cloudant-java-sdk/tree/v0.8.5/examples#postchanges) instead of the follower.

#### Error suppression

Expand Down Expand Up @@ -873,7 +873,7 @@ The follower is not optimized for some use cases and it is not recommended to us
* The volume of changes is very high (if the rate of changes in the database exceeds the follower's rate of pulling them it will never catch-up).

In these cases use-case specific control over the number of change requests made and the content size of the responses
may be achieved by using the SDK's [POST `_changes` API](https://github.com/IBM/cloudant-java-sdk/tree/v0.8.4/examples#postchanges).
may be achieved by using the SDK's [POST `_changes` API](https://github.com/IBM/cloudant-java-sdk/tree/v0.8.5/examples#postchanges).

#### Checkpointing

Expand Down Expand Up @@ -1120,7 +1120,7 @@ If you encounter an issue with the project, you are welcome to submit a

Before you submit a bug report, search for
[similar issues](https://github.com/IBM/cloudant-java-sdk/issues?q=is%3Aissue) and review the
[KNOWN_ISSUES file](https://github.com/IBM/cloudant-java-sdk/tree/v0.8.4/KNOWN_ISSUES.md) to verify that your issue hasn't been reported yet.
[KNOWN_ISSUES file](https://github.com/IBM/cloudant-java-sdk/tree/v0.8.5/KNOWN_ISSUES.md) to verify that your issue hasn't been reported yet.

Please consult the [security policy](https://github.com/IBM/cloudant-java-sdk/security/policy) before opening security related issues.

Expand Down Expand Up @@ -1150,8 +1150,8 @@ Find more open source projects on the [IBM GitHub](http://ibm.github.io/) page.

## Contributing

For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-java-sdk/tree/v0.8.4/CONTRIBUTING.md).
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-java-sdk/tree/v0.8.5/CONTRIBUTING.md).

## License

This SDK is released under the Apache 2.0 license. To read the full text of the license, see [LICENSE](https://github.com/IBM/cloudant-java-sdk/tree/v0.8.4/LICENSE).
This SDK is released under the Apache 2.0 license. To read the full text of the license, see [LICENSE](https://github.com/IBM/cloudant-java-sdk/tree/v0.8.5/LICENSE).
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.8.4</version>
<version>0.8.5</version>
<relativePath>../..</relativePath>
</parent>

Expand All @@ -16,12 +16,12 @@
<dependency>
<groupId>com.ibm.cloud</groupId>
<artifactId>cloudant-common</artifactId>
<version>0.8.4</version>
<version>0.8.5</version>
</dependency>
<dependency>
<groupId>com.ibm.cloud</groupId>
<artifactId>cloudant-common</artifactId>
<version>0.8.4</version>
<version>0.8.5</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.8.4</version>
<version>0.8.5</version>
<relativePath>../..</relativePath>
</parent>

<groupId>com.ibm.cloud</groupId>
<artifactId>cloudant-common</artifactId>
<version>0.8.4</version>
<version>0.8.5</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.8.4</version>
<version>0.8.5</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.8.4</version>
<version>0.8.5</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.8.4</version>
<version>0.8.5</version>
<packaging>pom</packaging>

<properties>
Expand Down

0 comments on commit c8819cd

Please sign in to comment.