Skip to content

Commit 50a8c18

Browse files
authored
fix(version): set v0.0.0 as the baseline for semantic release versioning (#4)
1 parent dcc7a2a commit 50a8c18

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.1
2+
current_version = 0.0.0
33
commit = True
44
message = Update version {current_version} -> {new_version}
55

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
33
[![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)
44

5-
# IBM Cloud Virtual Private Cloud (VPC) Python SDK Version 0.0.1
5+
# IBM Cloud Virtual Private Cloud (VPC) Python SDK Version 0.0.0
66

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

@@ -57,13 +57,13 @@ Service Name | Imported Class Name
5757
To install, use `pip` or `easy_install`:
5858

5959
```bash
60-
pip install --upgrade "ibm-vpc>=0.0.1"
60+
pip install --upgrade "ibm-vpc>=0.0.0"
6161
```
6262

6363
or
6464

6565
```bash
66-
easy_install --upgrade "ibm-vpc>=0.0.1"
66+
easy_install --upgrade "ibm-vpc>=0.0.0"
6767
```
6868

6969
## Using the SDK

ibm_vpc/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""
22
Version of vpc
33
"""
4-
__version__ = '0.0.1'
4+
__version__ = '0.0.0'

setup.py

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

22-
__version__ = '0.0.1'
22+
__version__ = '0.0.0'
2323
PACKAGE_NAME = 'ibm_vpc'
2424
PACKAGE_DESC = 'Python client library for IBM Cloud VPC Services'
2525

0 commit comments

Comments
 (0)