diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8890174..6efe023 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.8.0 +current_version = 0.9.0 commit = True message = Update version {current_version} -> {new_version} diff --git a/README.md b/README.md index 316c5ac..71fc5f8 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) -# IBM Cloud Virtual Private Cloud (VPC) Python SDK Version 0.8.0 +# IBM Cloud Virtual Private Cloud (VPC) Python SDK Version 0.9.0 Python client library to interact with various [IBM Cloud Virtual Private Cloud (VPC) Service APIs](https://cloud.ibm.com/apidocs/vpc). @@ -58,13 +58,13 @@ Service Name | Imported Class Name To install, use `pip` or `easy_install`: ```bash -pip install --upgrade "ibm-vpc>=0.8.0" +pip install --upgrade "ibm-vpc>=0.9.0" ``` or ```bash -easy_install --upgrade "ibm-vpc>=0.8.0" +easy_install --upgrade "ibm-vpc>=0.9.0" ``` ## Using the SDK diff --git a/ibm_vpc/version.py b/ibm_vpc/version.py index 36c0319..57fa0be 100644 --- a/ibm_vpc/version.py +++ b/ibm_vpc/version.py @@ -1,4 +1,4 @@ """ Version of vpc """ -__version__ = '0.8.0' +__version__ = '0.9.0' diff --git a/setup.py b/setup.py index fe25ab3..a85e6e2 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ import sys import pkg_resources -__version__ = '0.8.0' +__version__ = '0.9.0' PACKAGE_NAME = 'ibm_vpc' PACKAGE_DESC = 'Python client library for IBM Cloud VPC Services'