Skip to content

Commit 54881af

Browse files
Update version 0.10.4 -> 0.10.5
1 parent 6074af4 commit 54881af

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
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.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>[a|b|rc](?:0|[1-9]\\d*))?(?P<devrelease>(?:\\.dev)(?:0|[1-9]\\d*))?(?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-python-sdk?include_prereleases&sort=semver)](https://github.com/IBM/cloudant-python-sdk/releases/latest)
33
[![Docs](https://img.shields.io/static/v1?label=Pydoc&message=latest&color=blue)](https://ibm.github.io/cloudant-python-sdk/)
44

5-
# IBM Cloudant Python SDK Version 0.10.4
5+
# IBM Cloudant Python SDK Version 0.10.5
66

77
IBM Cloudant Python SDK is a client library that interacts with the
88
[IBM Cloudant APIs](https://cloud.ibm.com/apidocs/cloudant?code=python).
@@ -128,13 +128,13 @@ project:
128128
To install, use `pip` or `easy_install`:
129129

130130
```bash
131-
pip install --upgrade "ibmcloudant>=0.10.4"
131+
pip install --upgrade "ibmcloudant>=0.10.5"
132132
```
133133

134134
or
135135

136136
```bash
137-
easy_install --upgrade "ibmcloudant>=0.10.4"
137+
easy_install --upgrade "ibmcloudant>=0.10.5"
138138
```
139139

140140
## Using the SDK
@@ -599,7 +599,7 @@ You have deleted the document.
599599

600600
#### Further code examples
601601

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

604604
### Error handling
605605

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

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

794794
#### Error suppression
795795

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

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

829829
#### Checkpoints
@@ -1055,22 +1055,22 @@ then a `429 Too Many Requests` error occurs.
10551055
Pagination is available for these operations:
10561056
* Query all documents [global](https://cloud.ibm.com/apidocs/cloudant?code=python#postalldocs)
10571057
and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=python#postpartitionalldocs)
1058-
* [Global all documents examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/test/examples/src/features/pagination/AllDocsPagination.py)
1059-
* [Partitioned all documents examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/test/examples/src/features/pagination/partition_all_docs_pagination.py)
1058+
* [Global all documents examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/test/examples/src/features/pagination/AllDocsPagination.py)
1059+
* [Partitioned all documents examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/test/examples/src/features/pagination/partition_all_docs_pagination.py)
10601060
* Query all [design documents](https://cloud.ibm.com/apidocs/cloudant?code=python#postdesigndocs)
1061-
* [Design documents examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/test/examples/src/features/pagination/design_docs_pagination.py)
1061+
* [Design documents examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/test/examples/src/features/pagination/design_docs_pagination.py)
10621062
* Query with selector syntax [global](https://cloud.ibm.com/apidocs/cloudant?code=python#postfind)
10631063
and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=python#postpartitionfind)
1064-
* [Global find selector query examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/test/examples/src/features/pagination/find_pagination.py)
1065-
* [Partitioned find selector query examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/test/examples/src/features/pagination/partition_find_pagination.py)
1064+
* [Global find selector query examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/test/examples/src/features/pagination/find_pagination.py)
1065+
* [Partitioned find selector query examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/test/examples/src/features/pagination/partition_find_pagination.py)
10661066
* Query a search index [global](https://cloud.ibm.com/apidocs/cloudant?code=python#postsearch)
10671067
and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=python#postpartitionsearch)
1068-
* [Global search examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/test/examples/src/features/pagination/search_pagination.py)
1069-
* [Partitioned search examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/test/examples/src/features/pagination/partition_search_pagination.py)
1068+
* [Global search examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/test/examples/src/features/pagination/search_pagination.py)
1069+
* [Partitioned search examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/test/examples/src/features/pagination/partition_search_pagination.py)
10701070
* Query a MapReduce view [global](https://cloud.ibm.com/apidocs/cloudant?code=python#postview)
10711071
and [partitioned](https://cloud.ibm.com/apidocs/cloudant?code=python#postpartitionview)
1072-
* [Global view examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/test/examples/src/features/pagination/view_pagination.py)
1073-
* [Partitioned view examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.4/test/examples/src/features/pagination/partition_view_pagination.py)
1072+
* [Global view examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/test/examples/src/features/pagination/view_pagination.py)
1073+
* [Partitioned view examples](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.5/test/examples/src/features/pagination/partition_view_pagination.py)
10741074

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

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

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

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

12941294
## Contributing
12951295

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

12981298
## License
12991299

1300-
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-python-sdk/tree/v0.10.4/LICENSE).
1300+
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-python-sdk/tree/v0.10.5/LICENSE).

ibmcloudant/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
"""
1818
Version of ibmcloudant
1919
"""
20-
__version__ = '0.10.4'
20+
__version__ = '0.10.5'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
44

55
[project]
66
name = "ibmcloudant"
7-
version = "0.10.4"
7+
version = "0.10.5"
88
description = "Python client library for IBM Cloudant"
99
dependencies = [
1010
"ibm_cloud_sdk_core==3.24.2",

0 commit comments

Comments
 (0)