Skip to content

Commit 7a76e84

Browse files
Merge branch 'master' into pdns
2 parents 1a13ea6 + f8f8e04 commit 7a76e84

16 files changed

+1599
-491
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.0.2
2+
current_version = 0.1.0
33
commit = True
44
message = Update version {current_version} -> {new_version}
55

@@ -14,4 +14,3 @@ replace = __version__ = '{new_version}'
1414
[bumpversion:file:README.md]
1515
search = {current_version}
1616
replace = {new_version}
17-

.dl_env.enc

368 Bytes
Binary file not shown.

.transit_env.enc

0 Bytes
Binary file not shown.

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cache: pip
66

77
matrix:
88
include:
9-
- python: 3.7
9+
- python: 3.5
1010
before_script:
1111
- >-
1212
[ -z "${TRAVIS_TAG}" ] && [ "${TRAVIS_PULL_REQUEST}" == "false" ]

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# [0.1.0](https://github.com/IBM/networking-python-sdk/compare/v0.0.2...v0.1.0) (2020-08-01)
2+
3+
4+
### Features
5+
6+
* **deploy:** enable semantic release ([a77ad73](https://github.com/IBM/networking-python-sdk/commit/a77ad73c6b4e3fb303109349f8515ec564a51afb))
7+
* **direct_link:** renamed DirectLinkApisV1 to DirectLinkV1 ([e50bf15](https://github.com/IBM/networking-python-sdk/commit/e50bf1558f2ee294a1730484e71145ed935812fb))
8+
* Transit cross account ([#5](https://github.com/IBM/networking-python-sdk/issues/5)) ([41137c6](https://github.com/IBM/networking-python-sdk/commit/41137c639c33954dfd98c64f710fa7f93c91a148))

README.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1-
[![Build Status](https://travis.ibm.com/CloudEngineering/python-sdk-template.svg?token=eW5FVD71iyte6tTby8gr&branch=master)](https://travis.ibm.com/ibmcloud/networking-python-sdk)
1+
[![Build Status](https://travis-ci.com/IBM/networking-python-sdk.svg?branch=master)](https://travis-ci.com/IBM/networking-python-sdk)
2+
[![Release](https://img.shields.io/github/v/release/IBM/networking-python-sdk)](https://github.com/IBM/networking-python-sdk/releases/latest)
3+
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/ibm-cloud-networking-services)](https://pypi.org/project/ibm-cloud-networking-services/)
4+
[![PyPI](https://img.shields.io/pypi/v/ibm-cloud-networking-services)](https://pypi.org/project/ibm-cloud-networking-services/)
5+
![PyPI - Downloads](https://img.shields.io/pypi/dm/ibm-cloud-networking-services)
6+
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
7+
[![codecov](https://codecov.io/gh/IBM/networking-python-sdk/branch/master/graph/badge.svg)](https://codecov.io/gh/IBM/networking-python-sdk)
28
[![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)
39

4-
# IBM Cloud Networking Services Python SDK Version 0.0.2
10+
# IBM Cloud Networking Services Python SDK Version 0.1.0
511

612
Python client library to interact with various [IBM Cloud Networking Service APIs](https://cloud.ibm.com/apidocs?category=network).
713

@@ -73,7 +79,7 @@ IBM Cloud services:
7379

7480
| Direct Link Service | Imported Class Name |
7581
| -------------------------------------------------------- | ------------------- |
76-
| [Direct Link](https://cloud.ibm.com/apidocs/direct_link) | DirectLinkApisV1 |
82+
| [Direct Link](https://cloud.ibm.com/apidocs/direct_link?code=python) | DirectLinkV1 |
7783

7884
| Transit Service | Imported Class Name |
7985
| ---------------------------------------------------------------- | -------------------- |
@@ -92,13 +98,13 @@ IBM Cloud services:
9298
To install, use `pip` or `easy_install`:
9399

94100
```bash
95-
pip install --upgrade "ibm-cloud-networking-services==0.0.2"
101+
pip install --upgrade "ibm-cloud-networking-services==0.1.0"
96102
```
97103

98104
or
99105

100106
```bash
101-
easy_install --upgrade "ibm-cloud-networking-servies==0.0.2"
107+
easy_install --upgrade "ibm-cloud-networking-servies==0.1.0"
102108
```
103109

104110
## Using the SDK

ibm_cloud_networking_services/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
from .custom_pages_v1 import CustomPagesV1
2727
from .dns_record_bulk_v1 import DnsRecordBulkV1
2828
from .dns_records_v1 import DnsRecordsV1
29+
from .direct_link_v1 import DirectLinkV1
2930
from .firewall_access_rules_v1 import FirewallAccessRulesV1
3031
from .firewall_api_v1 import FirewallApiV1
3132
from .global_load_balancer_events_v1 import GlobalLoadBalancerEventsV1

0 commit comments

Comments
 (0)