Skip to content

Commit 9d49d4a

Browse files
Update version 0.8.1 -> 0.8.2
1 parent 73c11a6 commit 9d49d4a

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.8.1
2+
current_version = 0.8.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

Lines changed: 9 additions & 9 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.8.1
5+
# IBM Cloudant Python SDK Version 0.8.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).
@@ -123,13 +123,13 @@ project:
123123
To install, use `pip` or `easy_install`:
124124

125125
```bash
126-
pip install --upgrade "ibmcloudant>=0.8.1"
126+
pip install --upgrade "ibmcloudant>=0.8.2"
127127
```
128128

129129
or
130130

131131
```bash
132-
easy_install --upgrade "ibmcloudant>=0.8.1"
132+
easy_install --upgrade "ibmcloudant>=0.8.2"
133133
```
134134

135135

@@ -609,7 +609,7 @@ You have deleted the document.
609609

610610
#### Further code examples
611611

612-
For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-python-sdk/tree/v0.8.1/examples#examples-for-python).
612+
For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-python-sdk/tree/v0.8.2/examples#examples-for-python).
613613

614614
### Error handling
615615

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

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

808808
#### Error suppression
809809

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

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

843843
#### Checkpointing
844844

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

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

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

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

10721072
## Contributing
10731073

1074-
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-python-sdk/tree/v0.8.1/CONTRIBUTING.md).
1074+
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-python-sdk/tree/v0.8.2/CONTRIBUTING.md).
10751075

10761076
## License
10771077

1078-
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.8.1/LICENSE).
1078+
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.8.2/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.8.1'
20+
__version__ = '0.8.2'

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

0 commit comments

Comments
 (0)