Skip to content

Commit 3d659c8

Browse files
Sdk update 20230125 152037 (#5)
* synced with latest python template * added missing npmrc * prepared v2 update of the python SDK * feat(build): added v2 integration tests * feat(test): added v2 integration tests * adjusted python version * fix(build) fixed linter warnings * fix(build): adjusted travis config to trigger semantic release on push to main * fix(build): adjusted semantic-release config (#5) * feat(build): release v1 (#6) BREAKING CHANGE: marks v1.0.0 of this repository * Update version 0.1.0 -> 1.0.0 * chore(release): 1.0.0 release notes # [1.0.0](https://github.ibm.com/coligo/python-sdk/compare/v0.1.0...v1.0.0) (2023-01-21) ### Features * **build:** release v1 ([#6](https://github.ibm.com/coligo/python-sdk/issues/6)) ([160b7d1](https://github.ibm.com/coligo/python-sdk/commit/160b7d1ac4855a0eb7e6c534c2acb500fa65695f)) ### BREAKING CHANGES * **build:** marks v1.0.0 of this repository * feat(ci): ready for v2 (#7) BREAKING CHANGE: v2.0.0 * Update version 1.0.0 -> 2.0.0 * chore(release): 2.0.0 release notes # [2.0.0](https://github.ibm.com/coligo/python-sdk/compare/v1.0.0...v2.0.0) (2023-01-24) ### Features * **ci:** ready for v2 ([#7](https://github.ibm.com/coligo/python-sdk/issues/7)) ([b5eea13](https://github.ibm.com/coligo/python-sdk/commit/b5eea1399e835a3b913add7687e05ed376e87031)) ### BREAKING CHANGES * **ci:** v2.0.0 * fix(ci): added encrypted pypi deploy key (#8) * Update version 2.0.0 -> 2.0.1 * chore(release): 2.0.1 release notes ## [2.0.1](https://github.ibm.com/coligo/python-sdk/compare/v2.0.0...v2.0.1) (2023-01-25) ### Bug Fixes * **ci:** added encrypted pypi deploy key ([#8](https://github.ibm.com/coligo/python-sdk/issues/8)) ([729d82b](https://github.ibm.com/coligo/python-sdk/commit/729d82b3fb1bf8e0b550041451d05a3c1d78f80d)) * fix(ci): adjusted branch configuration of travis * Update version 2.0.1 -> 2.0.2 * chore(release): 2.0.2 release notes ## [2.0.2](https://github.ibm.com/coligo/python-sdk/compare/v2.0.1...v2.0.2) (2023-01-25) ### Bug Fixes * **ci:** adjusted branch configuration of travis ([dc9e46e](https://github.ibm.com/coligo/python-sdk/commit/dc9e46e2eb4544f2af6e24d607309a422a801a66)) * SDK update 20230125-152037 * fix(build): fixed linter error which was caused by merge operation Co-authored-by: semantic-release-bot <[email protected]>
1 parent cf97a39 commit 3d659c8

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ cache: pip
88
branches:
99
only:
1010
- main
11+
- /v\d+.\d+.\d+/
1112

1213
notifications:
1314
email: true

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
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 2.0.1
5+
6+
# Python SDK for IBM Cloud Code Engine 2.0.2
67

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

@@ -39,8 +40,8 @@ IBM Cloud services:
3940

4041
Service Name | Imported Class Name
4142
--- | ---
42-
[IBM Cloud Code Engine V2](https://cloud.ibm.com/apidocs/codeengine/codeengine-v2.0.1) | CodeEngineV2
43-
[IBM Cloud Code Engine V1](https://cloud.ibm.com/apidocs/codeengine/codeengine-v2.0.1) | IbmCloudCodeEngineV1
43+
[IBM Cloud Code Engine V2](https://cloud.ibm.com/apidocs/codeengine/codeengine-v2.0.2) | CodeEngineV2
44+
[IBM Cloud Code Engine V1](https://cloud.ibm.com/apidocs/codeengine/codeengine-v1.0.0) | IbmCloudCodeEngineV1
4445

4546
## Prerequisites
4647

@@ -55,13 +56,13 @@ Service Name | Imported Class Name
5556
To install, use `pip` or `easy_install`:
5657

5758
```bash
58-
pip install --upgrade "ibm_code_engine_sdk>=2.0.1"
59+
pip install --upgrade "ibm_code_engine_sdk>=2.0.2"
5960
```
6061

6162
or
6263

6364
```bash
64-
easy_install --upgrade "ibm_code_engine_sdk>=2.0.1"
65+
easy_install --upgrade "ibm_code_engine_sdk>=2.0.2"
6566
```
6667

6768
## 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__ = '2.0.1'
20+
__version__ = '2.0.2'

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__ = '2.0.1'
22+
__version__ = '2.0.2'
2323
PACKAGE_NAME = 'ibm_code_engine_sdk'
2424
PACKAGE_DESC = 'Python SDK for IBM Cloud Code Engine'
2525

0 commit comments

Comments
 (0)