Skip to content

Commit ae70cab

Browse files
Update version 0.7.3 -> 0.8.0
1 parent 952d563 commit ae70cab

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.7.3
2+
current_version = 0.8.0
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.7.3
5+
# IBM Cloudant Python SDK Version 0.8.0
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).
@@ -122,13 +122,13 @@ project:
122122
To install, use `pip` or `easy_install`:
123123

124124
```bash
125-
pip install --upgrade "ibmcloudant>=0.7.3"
125+
pip install --upgrade "ibmcloudant>=0.8.0"
126126
```
127127

128128
or
129129

130130
```bash
131-
easy_install --upgrade "ibmcloudant>=0.7.3"
131+
easy_install --upgrade "ibmcloudant>=0.8.0"
132132
```
133133

134134

@@ -602,7 +602,7 @@ You have deleted the document.
602602

603603
#### Further code examples
604604

605-
For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-python-sdk/tree/v0.7.3/examples#examples-for-python).
605+
For a complete list of code examples, see the [examples directory](https://github.com/IBM/cloudant-python-sdk/tree/v0.8.0/examples#examples-for-python).
606606

607607
### Error handling
608608

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

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

801801
#### Error suppression
802802

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

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

836836
#### Checkpointing
837837

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

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

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

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

10651065
## Contributing
10661066

1067-
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-python-sdk/tree/v0.7.3/CONTRIBUTING.md).
1067+
For more information, see [CONTRIBUTING](https://github.com/IBM/cloudant-python-sdk/tree/v0.8.0/CONTRIBUTING.md).
10681068

10691069
## License
10701070

1071-
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.7.3/LICENSE).
1071+
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.0/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.7.3'
20+
__version__ = '0.8.0'

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

0 commit comments

Comments
 (0)