Skip to content

Commit b6b02c1

Browse files
Update version 1.0.0 -> 2.0.0
1 parent b5eea13 commit b6b02c1

File tree

4 files changed

+7
-7
lines changed

4 files changed

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

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<!--
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-
# Python SDK for IBM Cloud Code Engine 1.0.0
5+
# Python SDK for IBM Cloud Code Engine 2.0.0
66

77
Python client library to interact with the [IBM Cloud Code Engine API](https://cloud.ibm.com/apidocs/codeengine).
88

@@ -40,7 +40,7 @@ IBM Cloud services:
4040
Service Name | Imported Class Name
4141
--- | ---
4242
[IBM Cloud Code Engine V2](https://cloud.ibm.com/apidocs/codeengine/codeengine-v2.0.0) | CodeEngineV2
43-
[IBM Cloud Code Engine V1](https://cloud.ibm.com/apidocs/codeengine/codeengine-v1.0.0) | IbmCloudCodeEngineV1
43+
[IBM Cloud Code Engine V1](https://cloud.ibm.com/apidocs/codeengine/codeengine-v2.0.0) | IbmCloudCodeEngineV1
4444

4545
## Prerequisites
4646

@@ -55,13 +55,13 @@ Service Name | Imported Class Name
5555
To install, use `pip` or `easy_install`:
5656

5757
```bash
58-
pip install --upgrade "ibm_code_engine_sdk>=1.0.0"
58+
pip install --upgrade "ibm_code_engine_sdk>=2.0.0"
5959
```
6060

6161
or
6262

6363
```bash
64-
easy_install --upgrade "ibm_code_engine_sdk>=1.0.0"
64+
easy_install --upgrade "ibm_code_engine_sdk>=2.0.0"
6565
```
6666

6767
## Using the SDK

ibm_code_engine_sdk/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
"""
1818
Version of ibm_code_engine_sdk
1919
"""
20-
__version__ = '1.0.0'
20+
__version__ = '2.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__ = '1.0.0'
22+
__version__ = '2.0.0'
2323
PACKAGE_NAME = 'ibm_code_engine_sdk'
2424
PACKAGE_DESC = 'Python SDK for IBM Cloud Code Engine'
2525

0 commit comments

Comments
 (0)