Skip to content

Commit 1dbec96

Browse files
Update version 0.8.2 -> 0.8.3
1 parent f73186f commit 1dbec96

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.8.2
2+
current_version = 0.8.3
33
commit = True
44
message = Update version {current_version} -> {new_version}
55
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-]+)*))?$

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[![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)
33
[![Docs](https://img.shields.io/static/v1?label=Javadoc&message=latest&color=blue)](https://ibm.github.io/cloudant-java-sdk/)
44

5-
# IBM Cloudant Java SDK Version 0.8.2
5+
# IBM Cloudant Java SDK Version 0.8.3
66

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

124124
## Installation
125125

126-
The current version of this SDK is: 0.8.2
126+
The current version of this SDK is: 0.8.3
127127

128128
The project artifacts are published on the
129129
[Maven Central](https://repo1.maven.org/maven2/com/ibm/cloud/cloudant/).
@@ -150,7 +150,7 @@ Extend *Maven dependencies* in your `pom.xml` file with the `cloudant` library.
150150
<dependency>
151151
<groupId>com.ibm.cloud</groupId>
152152
<artifactId>cloudant</artifactId>
153-
<version>0.8.2</version>
153+
<version>0.8.3</version>
154154
</dependency>
155155
</dependencies>
156156
```
@@ -162,7 +162,7 @@ Add the `cloudant` library to the *dependencies* in your `build.gradle` file:
162162
```groovy
163163
dependencies {
164164
// other dependencies...
165-
implementation group: "com.ibm.cloud", name: "cloudant", version: "0.8.2"
165+
implementation group: "com.ibm.cloud", name: "cloudant", version: "0.8.3"
166166
}
167167
```
168168

@@ -734,7 +734,7 @@ You have deleted the document.
734734

735735
#### Further code examples
736736

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

739739
### Error handling
740740

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

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

836836
#### Error suppression
837837

@@ -866,7 +866,7 @@ The follower is not optimized for some use cases and it is not recommended to us
866866
* 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).
867867

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

871871
#### Checkpointing
872872

@@ -1113,7 +1113,7 @@ If you encounter an issue with the project, you are welcome to submit a
11131113

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

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

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

11441144
## Contributing
11451145

1146-
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-java-sdk/tree/v0.8.2/CONTRIBUTING.md).
1146+
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-java-sdk/tree/v0.8.3/CONTRIBUTING.md).
11471147

11481148
## License
11491149

1150-
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.2/LICENSE).
1150+
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.3/LICENSE).

modules/cloudant/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.ibm.cloud</groupId>
66
<artifactId>cloudant-parent</artifactId>
7-
<version>0.8.2</version>
7+
<version>0.8.3</version>
88
<relativePath>../..</relativePath>
99
</parent>
1010

@@ -16,12 +16,12 @@
1616
<dependency>
1717
<groupId>com.ibm.cloud</groupId>
1818
<artifactId>cloudant-common</artifactId>
19-
<version>0.8.2</version>
19+
<version>0.8.3</version>
2020
</dependency>
2121
<dependency>
2222
<groupId>com.ibm.cloud</groupId>
2323
<artifactId>cloudant-common</artifactId>
24-
<version>0.8.2</version>
24+
<version>0.8.3</version>
2525
<type>test-jar</type>
2626
<classifier>tests</classifier>
2727
<scope>test</scope>

modules/common/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
<parent>
55
<artifactId>cloudant-parent</artifactId>
66
<groupId>com.ibm.cloud</groupId>
7-
<version>0.8.2</version>
7+
<version>0.8.3</version>
88
<relativePath>../..</relativePath>
99
</parent>
1010

1111
<groupId>com.ibm.cloud</groupId>
1212
<artifactId>cloudant-common</artifactId>
13-
<version>0.8.2</version>
13+
<version>0.8.3</version>
1414

1515
<name>Cloudant Common Library</name>
1616
<packaging>jar</packaging>

modules/coverage-reports/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>cloudant-parent</artifactId>
55
<groupId>com.ibm.cloud</groupId>
6-
<version>0.8.2</version>
6+
<version>0.8.3</version>
77
<relativePath>../..</relativePath>
88
</parent>
99
<modelVersion>4.0.0</modelVersion>

modules/examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>cloudant-parent</artifactId>
88
<groupId>com.ibm.cloud</groupId>
9-
<version>0.8.2</version>
9+
<version>0.8.3</version>
1010
<relativePath>../..</relativePath>
1111
</parent>
1212

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<url>https://github.com/IBM/cloudant-java-sdk</url>
1212

1313
<groupId>com.ibm.cloud</groupId>
14-
<version>0.8.2</version>
14+
<version>0.8.3</version>
1515
<packaging>pom</packaging>
1616

1717
<properties>

0 commit comments

Comments
 (0)