Skip to content

Commit e2df969

Browse files
committed
Release 1.1.1
1 parent ce67bb0 commit e2df969

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
# 1.1.1
4+
## Content
5+
* No change. Refer to deprecation notice in README
6+
37
# 1.1.0
48
## Content
59
### Features
@@ -14,4 +18,4 @@
1418
## Content
1519
### Features
1620
* Initial release - Deprecated due to issues with published binaries on PyPI. Please use 1.0.1
17-
* This Feature allows configuration of a firewall for a bucket to restrict access to a defined list of IP addresses
21+
* This Feature allows configuration of a firewall for a bucket to restrict access to a defined list of IP addresses

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
This package allows Python developers to write software that interacts with the Resource Configuration API for [IBM
44
Cloud Object Storage](https://cloud.ibm.com/apidocs/cos/cos-configuration).
55

6+
## Notice
7+
8+
IBM is officially deprecating support of Python versions 2.7 & 3.4. All clients need to upgrade to version 3.5 or greater by January 31, 2020.
9+
610
## Documentation
711

812
* [Core documentation for IBM COS](https://cloud.ibm.com/docs/services/cloud-object-storage/getting-started.html)
@@ -16,7 +20,7 @@ For release notes, see the [CHANGELOG](CHANGELOG.md).
1620
You'll need:
1721
* An instance of COS.
1822
* An API key from [IBM Cloud Identity and Access Management](https://cloud.ibm.com/docs/iam/users_roles.html).
19-
* **Python 2.7, 3.4, 3.5, 3.6, or 3.7**.
23+
* **Python 3.5, 3.6, or 3.7**.
2024

2125
These values can be found in the IBM Cloud Console by [generating a 'service credential'](https://cloud.ibm.com/docs/services/cloud-object-storage/iam/service-credentials.html).
2226

cos_config/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
__author__ = 'IBM'
2-
__version__ = '1.1.1.dev1'
2+
__version__ = '1.1.1'

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
requests==2.21.0
2-
ibm-cloud-sdk-core>=0.4.2
2+
ibm-cloud-sdk-core>=0.4.2,<=0.5.0

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,15 @@
1515

1616
requirements = [
1717
'requests',
18-
'ibm-cloud-sdk-core>=0.4.2',
18+
'ibm-cloud-sdk-core>=0.4.2,<=0.5.0',
1919
]
2020

2121

2222
def get_version():
23+
'''
24+
Get the SDK version number
25+
:return:
26+
'''
2327
init = open(os.path.join(ROOT, 'cos_config', '__init__.py')).read()
2428
return VERSION_RE.search(init).group(1)
2529

0 commit comments

Comments
 (0)