Skip to content

Commit 0d61730

Browse files
Update version 0.10.15 -> 0.10.16
1 parent 8a822c0 commit 0d61730

File tree

11 files changed

+39
-39
lines changed

11 files changed

+39
-39
lines changed

.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.15"
2+
current_version = "0.10.16"
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: 17 additions & 17 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.15
5+
# IBM Cloudant Java SDK Version 0.10.16
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).
@@ -67,8 +67,8 @@ project:
6767
- Handles the authentication.
6868
- Familiar user experience with IBM Cloud SDKs.
6969
- Flexibility to use either built-in models or byte-based requests and responses for documents.
70-
- Built-in [Changes feed follower](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.15/docs/Changes_Follower.md)
71-
- Built-in [Pagination](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.15/docs/Pagination.md)
70+
- Built-in [Changes feed follower](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.16/docs/Changes_Follower.md)
71+
- Built-in [Pagination](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.16/docs/Pagination.md)
7272
- HTTP2 support for higher performance connections to IBM Cloudant.
7373
- Perform requests either synchronously or asynchronously.
7474
- Instances of the client are unconditionally thread-safe.
@@ -85,7 +85,7 @@ project:
8585

8686
## Installation
8787

88-
The current version of this SDK is: 0.10.15
88+
The current version of this SDK is: 0.10.16
8989

9090
The project artifacts are published on the
9191
[Maven Central](https://repo1.maven.org/maven2/com/ibm/cloud/cloudant/).
@@ -112,7 +112,7 @@ Extend *Maven dependencies* in your `pom.xml` file with the `cloudant` library.
112112
<dependency>
113113
<groupId>com.ibm.cloud</groupId>
114114
<artifactId>cloudant</artifactId>
115-
<version>0.10.15</version>
115+
<version>0.10.16</version>
116116
</dependency>
117117
</dependencies>
118118
```
@@ -124,7 +124,7 @@ Add the `cloudant` library to the *dependencies* in your `build.gradle` file:
124124
```groovy
125125
dependencies {
126126
// other dependencies...
127-
implementation group: "com.ibm.cloud", name: "cloudant", version: "0.10.15"
127+
implementation group: "com.ibm.cloud", name: "cloudant", version: "0.10.16"
128128
}
129129
```
130130

@@ -138,16 +138,16 @@ account.
138138

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

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

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

148148
### Authentication
149149

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

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

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

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

204204
### Error handling
205205

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

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

228228
The API reference contains further examples of using byte streams.
@@ -238,7 +238,7 @@ Expand them to see examples of:
238238

239239
### Further resources
240240

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

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

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

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

292292
## Contributing
293293

294-
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.15/CONTRIBUTING.md).
294+
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.16/CONTRIBUTING.md).
295295

296296
## License
297297

298-
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.15/LICENSE).
298+
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.16/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.15/examples#postchanges) instead of the follower.
70+
[POST `_changes` API](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.16/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.15/examples#postchanges)
104+
In these use-cases use the SDK's [POST `_changes` API](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.16/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.15/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.16/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.15/modules/examples/src/main/java/features/pagination/AllDocsPagination.java)
77-
* [Partitioned all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.15/modules/examples/src/main/java/features/pagination/PartitionAllDocsPagination.java)
76+
* [Global all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.16/modules/examples/src/main/java/features/pagination/AllDocsPagination.java)
77+
* [Partitioned all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.16/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.15/modules/examples/src/main/java/features/pagination/DesignDocsPagination.java)
79+
* [Design documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.16/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.15/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.15/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.16/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.16/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.15/modules/examples/src/main/java/features/pagination/SearchPagination.java)
87-
* [Partitioned search examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.15/modules/examples/src/main/java/features/pagination/PartitionSearchPagination.java)
86+
* [Global search examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.16/modules/examples/src/main/java/features/pagination/SearchPagination.java)
87+
* [Partitioned search examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.16/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.15/modules/examples/src/main/java/features/pagination/ViewPagination.java)
91-
* [Partitioned view examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.15/modules/examples/src/main/java/features/pagination/PartitionViewPagination.java)
90+
* [Global view examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.16/modules/examples/src/main/java/features/pagination/ViewPagination.java)
91+
* [Partitioned view examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.16/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.15 Detailed Documentation
1+
# IBM Cloudant Java SDK Version 0.10.16 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.15</version>
7+
<version>0.10.16</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.15</version>
19+
<version>0.10.16</version>
2020
</dependency>
2121
<dependency>
2222
<groupId>com.ibm.cloud</groupId>
2323
<artifactId>cloudant-common</artifactId>
24-
<version>0.10.15</version>
24+
<version>0.10.16</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.15</version>
7+
<version>0.10.16</version>
88
<relativePath>../..</relativePath>
99
</parent>
1010

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

0 commit comments

Comments
 (0)