Skip to content

Commit 72874ad

Browse files
Update version 0.10.1 -> 0.10.2
1 parent cca908b commit 72874ad

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.bumpversion.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "0.10.1"
2+
current_version = "0.10.2"
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

+9-9
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.1
5+
# IBM Cloudant Python SDK Version 0.10.2
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).
@@ -111,13 +111,13 @@ project:
111111
To install, use `pip` or `easy_install`:
112112

113113
```bash
114-
pip install --upgrade "ibmcloudant>=0.10.1"
114+
pip install --upgrade "ibmcloudant>=0.10.2"
115115
```
116116

117117
or
118118

119119
```bash
120-
easy_install --upgrade "ibmcloudant>=0.10.1"
120+
easy_install --upgrade "ibmcloudant>=0.10.2"
121121
```
122122

123123
## Using the SDK
@@ -571,7 +571,7 @@ You have deleted the document.
571571

572572
#### Further code examples
573573

574-
For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.1/examples#examples-for-python).
574+
For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.2/examples#examples-for-python).
575575

576576
### Error handling
577577

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

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

766766
#### Error suppression
767767

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

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

801801
#### Checkpointing
802802

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

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

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

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

10181018
## Contributing
10191019

1020-
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.1/CONTRIBUTING.md).
1020+
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-python-sdk/tree/v0.10.2/CONTRIBUTING.md).
10211021

10221022
## License
10231023

1024-
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.1/LICENSE).
1024+
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.2/LICENSE).

ibmcloudant/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
"""
1818
Version of ibmcloudant
1919
"""
20-
__version__ = '0.10.1'
20+
__version__ = '0.10.2'

pyproject.toml

+1-1
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.1"
7+
version = "0.10.2"
88
description = "Python client library for IBM Cloudant"
99
dependencies = [
1010
"ibm_cloud_sdk_core==3.23.0",

0 commit comments

Comments
 (0)