Skip to content

Commit abf12fa

Browse files
Update version 0.10.19 -> 0.10.20
1 parent 423c4cd commit abf12fa

11 files changed

Lines changed: 40 additions & 40 deletions

File tree

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "0.10.19"
2+
current_version = "0.10.20"
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: 18 additions & 18 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.10.19
5+
# IBM Cloudant Java SDK Version 0.10.20
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).
@@ -61,15 +61,15 @@ project:
6161
- Supported by IBM Cloudant.
6262
- Server compatibility with:
6363
- IBM Cloudant (Gen 1).
64-
- IBM Cloudant (Gen 2) - see [compatibility notes](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/KNOWN_ISSUES.md#cloudant-gen-2-compatibility).
64+
- IBM Cloudant (Gen 2) - see [compatibility notes](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/KNOWN_ISSUES.md#cloudant-gen-2-compatibility).
6565
- [Apache CouchDB 3.x](https://docs.couchdb.org/en/stable/) for data operations.
6666
- Includes all the most popular and latest supported endpoints for
6767
applications.
6868
- Handles the authentication.
6969
- Familiar user experience with IBM Cloud SDKs.
7070
- Flexibility to use either built-in models or byte-based requests and responses for documents.
71-
- Built-in [Changes feed follower](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/docs/Changes_Follower.md)
72-
- Built-in [Pagination](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/docs/Pagination.md)
71+
- Built-in [Changes feed follower](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/docs/Changes_Follower.md)
72+
- Built-in [Pagination](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/docs/Pagination.md)
7373
- HTTP2 support for higher performance connections to IBM Cloudant.
7474
- Perform requests either synchronously or asynchronously.
7575
- Instances of the client are unconditionally thread-safe.
@@ -86,7 +86,7 @@ project:
8686

8787
## Installation
8888

89-
The current version of this SDK is: 0.10.19
89+
The current version of this SDK is: 0.10.20
9090

9191
The project artifacts are published on the
9292
[Maven Central](https://repo1.maven.org/maven2/com/ibm/cloud/cloudant/).
@@ -113,7 +113,7 @@ Extend *Maven dependencies* in your `pom.xml` file with the `cloudant` library.
113113
<dependency>
114114
<groupId>com.ibm.cloud</groupId>
115115
<artifactId>cloudant</artifactId>
116-
<version>0.10.19</version>
116+
<version>0.10.20</version>
117117
</dependency>
118118
</dependencies>
119119
```
@@ -125,7 +125,7 @@ Add the `cloudant` library to the *dependencies* in your `build.gradle` file:
125125
```groovy
126126
dependencies {
127127
// other dependencies...
128-
implementation group: "com.ibm.cloud", name: "cloudant", version: "0.10.19"
128+
implementation group: "com.ibm.cloud", name: "cloudant", version: "0.10.20"
129129
}
130130
```
131131

@@ -139,16 +139,16 @@ account.
139139

140140
There are several ways to **set** these authentication properties:
141141

142-
1. As [environment variables](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/docs/Authentication.md#authentication-with-environment-variables)
143-
2. The [programmatic approach](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/docs/Authentication.md#programmatic-authentication)
144-
3. With an [external credentials file](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/docs/Authentication.md#authentication-with-external-configuration)
142+
1. As [environment variables](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/docs/Authentication.md#authentication-with-environment-variables)
143+
2. The [programmatic approach](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/docs/Authentication.md#programmatic-authentication)
144+
3. With an [external credentials file](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/docs/Authentication.md#authentication-with-external-configuration)
145145

146146
The following section describes the different authentication types and provides environment variable examples.
147147
Examples for other configuration methods are available by following the provided links.
148148

149149
### Authentication
150150

151-
Consult the [authentication document](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/docs/Authentication.md)
151+
Consult the [authentication document](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/docs/Authentication.md)
152152
for comprehensive details of all the available authentication methods and how to configure them with environment settings
153153
or programmatically.
154154

@@ -197,10 +197,10 @@ List<String> response =
197197
System.out.println(response);
198198
```
199199

200-
[More tutorial examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/docs/Examples.md) for creating a database
200+
[More tutorial examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/docs/Examples.md) for creating a database
201201
and document create, read, update and delete operations.
202202

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

205205
### Error handling
206206

@@ -223,7 +223,7 @@ Response byte stream is supported in functions with the suffix of `AsStream`.
223223
The returned byte stream allows the response body to be consumed
224224
without triggering JSON unmarshalling that is typically performed by the SDK.
225225

226-
The [update document](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/docs/Examples.md#3-update-your-previously-created-document) section
226+
The [update document](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/docs/Examples.md#3-update-your-previously-created-document) section
227227
contains examples for both request and response byte stream cases.
228228

229229
The API reference contains further examples of using byte streams.
@@ -239,7 +239,7 @@ Expand them to see examples of:
239239

240240
### Further resources
241241

242-
- [Cloudant Java SDK feature docs](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/docs)
242+
- [Cloudant Java SDK feature docs](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/docs)
243243
- [Cloudant API docs](https://cloud.ibm.com/apidocs/cloudant?code=java):
244244
API reference including usage examples for Cloudant Java SDK API.
245245
- [Javadoc](https://ibm.github.io/cloudant-java-sdk/):
@@ -262,7 +262,7 @@ If you encounter an issue with the project, you are welcome to submit a
262262

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

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

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

293293
## Contributing
294294

295-
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/CONTRIBUTING.md).
295+
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/CONTRIBUTING.md).
296296

297297
## License
298298

299-
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.10.19/LICENSE).
299+
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.10.20/LICENSE).

docs/Changes_Follower.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The changes follower requires the client to have HTTP timeouts of at least 1 min
6767
instantiation if it is insufficient. The default client configuration has sufficiently long timeouts.
6868

6969
For use-cases where these configuration limitations are too restrictive then write code to use the SDK's
70-
[POST `_changes` API](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/examples#postchanges) instead of the follower.
70+
[POST `_changes` API](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/examples#postchanges) instead of the follower.
7171

7272
## Error suppression
7373

@@ -101,7 +101,7 @@ The follower is not optimized for some use cases and it is not recommended to us
101101
* Setting `include_docs` and larger document sizes (for example > 10 kiB).
102102
* The volume of changes is very high (if the rate of changes in the database exceeds the follower's rate of pulling them it can never catch-up).
103103

104-
In these use-cases use the SDK's [POST `_changes` API](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/examples#postchanges)
104+
In these use-cases use the SDK's [POST `_changes` API](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/examples#postchanges)
105105
for specific control over the number of change requests made and the content size of the responses.
106106

107107
## Checkpoints

docs/Examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,4 +417,4 @@ You have deleted the document.
417417

418418
## Further code examples
419419

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

docs/Pagination.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -73,22 +73,22 @@ then a `429 Too Many Requests` error occurs.
7373
Pagination is available for these operations:
7474
* Query all documents [global](https://cloud.ibm.com/apidocs/cloudant?code=java#postalldocs)
7575
and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=java#postpartitionalldocs)
76-
* [Global all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/modules/examples/src/main/java/features/pagination/AllDocsPagination.java)
77-
* [Partitioned all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/modules/examples/src/main/java/features/pagination/PartitionAllDocsPagination.java)
76+
* [Global all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/modules/examples/src/main/java/features/pagination/AllDocsPagination.java)
77+
* [Partitioned all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/modules/examples/src/main/java/features/pagination/PartitionAllDocsPagination.java)
7878
* Query all [design documents](https://cloud.ibm.com/apidocs/cloudant?code=java#postdesigndocs)
79-
* [Design documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/modules/examples/src/main/java/features/pagination/DesignDocsPagination.java)
79+
* [Design documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/modules/examples/src/main/java/features/pagination/DesignDocsPagination.java)
8080
* Query with selector syntax [global](https://cloud.ibm.com/apidocs/cloudant?code=java#postfind)
8181
and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=java#postpartitionfind)
82-
* [Global find selector query examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/modules/examples/src/main/java/features/pagination/FindPagination.java)
83-
* [Partitioned find selector query examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/modules/examples/src/main/java/features/pagination/PartitionFindPagination.java)
82+
* [Global find selector query examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/modules/examples/src/main/java/features/pagination/FindPagination.java)
83+
* [Partitioned find selector query examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/modules/examples/src/main/java/features/pagination/PartitionFindPagination.java)
8484
* Query a search index [global](https://cloud.ibm.com/apidocs/cloudant?code=java#postsearch)
8585
and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=java#postpartitionsearch)
86-
* [Global search examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/modules/examples/src/main/java/features/pagination/SearchPagination.java)
87-
* [Partitioned search examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/modules/examples/src/main/java/features/pagination/PartitionSearchPagination.java)
86+
* [Global search examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/modules/examples/src/main/java/features/pagination/SearchPagination.java)
87+
* [Partitioned search examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/modules/examples/src/main/java/features/pagination/PartitionSearchPagination.java)
8888
* Query a MapReduce view [global](https://cloud.ibm.com/apidocs/cloudant?code=java#postview)
8989
and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=java#postpartitionview)
90-
* [Global view examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/modules/examples/src/main/java/features/pagination/ViewPagination.java)
91-
* [Partitioned view examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.19/modules/examples/src/main/java/features/pagination/PartitionViewPagination.java)
90+
* [Global view examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/modules/examples/src/main/java/features/pagination/ViewPagination.java)
91+
* [Partitioned view examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.20/modules/examples/src/main/java/features/pagination/PartitionViewPagination.java)
9292

9393
The examples presented in this `README` are for all documents in a partition.
9494
The links in the list are to equivalent examples for each of the other available operations.

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# IBM Cloudant Java SDK Version 0.10.19 Detailed Documentation
1+
# IBM Cloudant Java SDK Version 0.10.20 Detailed Documentation
22

33
## Table of Contents
44

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.10.19</version>
7+
<version>0.10.20</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.10.19</version>
19+
<version>0.10.20</version>
2020
</dependency>
2121
<dependency>
2222
<groupId>com.ibm.cloud</groupId>
2323
<artifactId>cloudant-common</artifactId>
24-
<version>0.10.19</version>
24+
<version>0.10.20</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.10.19</version>
7+
<version>0.10.20</version>
88
<relativePath>../..</relativePath>
99
</parent>
1010

1111
<groupId>com.ibm.cloud</groupId>
1212
<artifactId>cloudant-common</artifactId>
13-
<version>0.10.19</version>
13+
<version>0.10.20</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.10.19</version>
6+
<version>0.10.20</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.10.19</version>
9+
<version>0.10.20</version>
1010
<relativePath>../..</relativePath>
1111
</parent>
1212

0 commit comments

Comments
 (0)