Skip to content

fix(semver): adding v0.0.1 baseline for semantic versioning #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 30, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.0
current_version = 0.0.1
commit = True
message = Update version {current_version} -> {new_version}

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.0.0
# IBM Cloud Virtual Private Cloud (VPC) Python SDK Version 0.0.1

Python client library to interact with various [IBM Cloud Virtual Private Cloud (VPC) Service APIs](https://cloud.ibm.com/apidocs?category=vpc).

Expand Down Expand Up @@ -57,13 +57,13 @@ Service Name | Imported Class Name
To install, use `pip` or `easy_install`:

```bash
pip install --upgrade "ibm-vpc>=0.0.0"
pip install --upgrade "ibm-vpc>=0.0.1"
```

or

```bash
easy_install --upgrade "ibm-vpc>=0.0.0"
easy_install --upgrade "ibm-vpc>=0.0.1"
```

## Using the SDK
Expand Down
2 changes: 1 addition & 1 deletion ibm_vpc/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""
Version of vpc
"""
__version__ = '0.0.0'
__version__ = '0.0.1'
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import sys
import pkg_resources

__version__ = '0.0.0'
__version__ = '0.0.1'
PACKAGE_NAME = 'ibm_vpc'
PACKAGE_DESC = 'Python client library for IBM Cloud VPC Services'

Expand Down Expand Up @@ -68,10 +68,10 @@ def finalize_options(self):
tests_require=tests_require,
cmdclass={'test': PyTest, 'test_unit': PyTestUnit, 'test_integration': PyTestIntegration},
author='IBM',
author_email='devexdev@us.ibm.com',
author_email='vpcui@us.ibm.com',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/vpc/python-sdk',
url='https://github.com/IBM/vpc-python-sdk',
packages=[PACKAGE_NAME],
include_package_data=True,
keywords=PACKAGE_NAME,
Expand Down