Skip to content

Commit ad34ab4

Browse files
Update version 0.0.29 -> 0.0.30
1 parent 9da567a commit ad34ab4

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
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.0.29
2+
current_version = 0.0.30
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
[![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)
1515
[![Docs](https://img.shields.io/static/v1?label=pythondoc&message=latest&color=blue)](https://ibm.github.io/cloudant-python-sdk/)
1616

17-
# IBM Cloudant Python SDK Version 0.0.29
17+
# IBM Cloudant Python SDK Version 0.0.30
1818

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

109109
```bash
110-
pip install --upgrade "ibmcloudant>=0.0.29"
110+
pip install --upgrade "ibmcloudant>=0.0.30"
111111
```
112112

113113
or
114114

115115
```bash
116-
easy_install --upgrade "ibmcloudant>=0.0.29"
116+
easy_install --upgrade "ibmcloudant>=0.0.30"
117117
```
118118

119119
## Authentication

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.0.29'
20+
__version__ = '0.0.30'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import sys
2121
import pkg_resources
2222

23-
__version__ = '0.0.29'
23+
__version__ = '0.0.30'
2424
PACKAGE_NAME = 'ibmcloudant'
2525
PACKAGE_DESC = 'Python client library for IBM Cloudant'
2626

0 commit comments

Comments
 (0)