Skip to content

Commit 794c81a

Browse files
Update version 0.10.4 -> 0.10.5
1 parent 508b1aa commit 794c81a

7 files changed

Lines changed: 28 additions & 28 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.4"
2+
current_version = "0.10.5"
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: 19 additions & 19 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.4
5+
# IBM Cloudant Java SDK Version 0.10.5
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).
@@ -131,7 +131,7 @@ project:
131131

132132
## Installation
133133

134-
The current version of this SDK is: 0.10.4
134+
The current version of this SDK is: 0.10.5
135135

136136
The project artifacts are published on the
137137
[Maven Central](https://repo1.maven.org/maven2/com/ibm/cloud/cloudant/).
@@ -158,7 +158,7 @@ Extend *Maven dependencies* in your `pom.xml` file with the `cloudant` library.
158158
<dependency>
159159
<groupId>com.ibm.cloud</groupId>
160160
<artifactId>cloudant</artifactId>
161-
<version>0.10.4</version>
161+
<version>0.10.5</version>
162162
</dependency>
163163
</dependencies>
164164
```
@@ -170,7 +170,7 @@ Add the `cloudant` library to the *dependencies* in your `build.gradle` file:
170170
```groovy
171171
dependencies {
172172
// other dependencies...
173-
implementation group: "com.ibm.cloud", name: "cloudant", version: "0.10.4"
173+
implementation group: "com.ibm.cloud", name: "cloudant", version: "0.10.5"
174174
}
175175
```
176176

@@ -733,7 +733,7 @@ You have deleted the document.
733733

734734
#### Further code examples
735735

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

738738
### Error handling
739739

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

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

834834
#### Error suppression
835835

@@ -863,7 +863,7 @@ The follower is not optimized for some use cases and it is not recommended to us
863863
* Setting `include_docs` and larger document sizes (for example > 10 kiB).
864864
* 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).
865865

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

869869
#### Checkpoints
@@ -1139,22 +1139,22 @@ then a `429 Too Many Requests` error occurs.
11391139
Pagination is available for these operations:
11401140
* Query all documents [global](https://cloud.ibm.com/apidocs/cloudant?code=java#postalldocs)
11411141
and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=java#postpartitionalldocs)
1142-
* [Global all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.4/modules/examples/src/main/java/features/pagination/AllDocsPagination.java)
1143-
* [Partitioned all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.4/modules/examples/src/main/java/features/pagination/PartitionAllDocsPagination.java)
1142+
* [Global all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.5/modules/examples/src/main/java/features/pagination/AllDocsPagination.java)
1143+
* [Partitioned all documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.5/modules/examples/src/main/java/features/pagination/PartitionAllDocsPagination.java)
11441144
* Query all [design documents](https://cloud.ibm.com/apidocs/cloudant?code=java#postdesigndocs)
1145-
* [Design documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.4/modules/examples/src/main/java/features/pagination/DesignDocsPagination.java)
1145+
* [Design documents examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.5/modules/examples/src/main/java/features/pagination/DesignDocsPagination.java)
11461146
* Query with selector syntax [global](https://cloud.ibm.com/apidocs/cloudant?code=java#postfind)
11471147
and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=java#postpartitionfind)
1148-
* [Global find selector query examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.4/modules/examples/src/main/java/features/pagination/FindPagination.java)
1149-
* [Partitioned find selector query examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.4/modules/examples/src/main/java/features/pagination/PartitionFindPagination.java)
1148+
* [Global find selector query examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.5/modules/examples/src/main/java/features/pagination/FindPagination.java)
1149+
* [Partitioned find selector query examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.5/modules/examples/src/main/java/features/pagination/PartitionFindPagination.java)
11501150
* Query a search index [global](https://cloud.ibm.com/apidocs/cloudant?code=java#postsearch)
11511151
and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=java#postpartitionsearch)
1152-
* [Global search examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.4/modules/examples/src/main/java/features/pagination/SearchPagination.java)
1153-
* [Partitioned search examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.4/modules/examples/src/main/java/features/pagination/PartitionSearchPagination.java)
1152+
* [Global search examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.5/modules/examples/src/main/java/features/pagination/SearchPagination.java)
1153+
* [Partitioned search examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.5/modules/examples/src/main/java/features/pagination/PartitionSearchPagination.java)
11541154
* Query a MapReduce view [global](https://cloud.ibm.com/apidocs/cloudant?code=java#postview)
11551155
and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=java#postpartitionview)
1156-
* [Global view examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.4/modules/examples/src/main/java/features/pagination/ViewPagination.java)
1157-
* [Partitioned view examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.4/modules/examples/src/main/java/features/pagination/PartitionViewPagination.java)
1156+
* [Global view examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.5/modules/examples/src/main/java/features/pagination/ViewPagination.java)
1157+
* [Partitioned view examples](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.5/modules/examples/src/main/java/features/pagination/PartitionViewPagination.java)
11581158

11591159
The examples presented in this `README` are for all documents in a partition.
11601160
The links in the list are to equivalent examples for each of the other available operations.
@@ -1396,7 +1396,7 @@ If you encounter an issue with the project, you are welcome to submit a
13961396

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

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

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

14271427
## Contributing
14281428

1429-
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.4/CONTRIBUTING.md).
1429+
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-java-sdk/tree/v0.10.5/CONTRIBUTING.md).
14301430

14311431
## License
14321432

1433-
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.4/LICENSE).
1433+
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.5/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.10.4</version>
7+
<version>0.10.5</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.4</version>
19+
<version>0.10.5</version>
2020
</dependency>
2121
<dependency>
2222
<groupId>com.ibm.cloud</groupId>
2323
<artifactId>cloudant-common</artifactId>
24-
<version>0.10.4</version>
24+
<version>0.10.5</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.4</version>
7+
<version>0.10.5</version>
88
<relativePath>../..</relativePath>
99
</parent>
1010

1111
<groupId>com.ibm.cloud</groupId>
1212
<artifactId>cloudant-common</artifactId>
13-
<version>0.10.4</version>
13+
<version>0.10.5</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.4</version>
6+
<version>0.10.5</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.4</version>
9+
<version>0.10.5</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.10.4</version>
14+
<version>0.10.5</version>
1515
<packaging>pom</packaging>
1616

1717
<properties>

0 commit comments

Comments
 (0)