Skip to content

Commit

Permalink
Release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cossdk committed Oct 24, 2019
1 parent ce67bb0 commit e2df969
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

# 1.1.1
## Content
* No change. Refer to deprecation notice in README

# 1.1.0
## Content
### Features
Expand All @@ -14,4 +18,4 @@
## Content
### Features
* Initial release - Deprecated due to issues with published binaries on PyPI. Please use 1.0.1
* This Feature allows configuration of a firewall for a bucket to restrict access to a defined list of IP addresses
* This Feature allows configuration of a firewall for a bucket to restrict access to a defined list of IP addresses
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
This package allows Python developers to write software that interacts with the Resource Configuration API for [IBM
Cloud Object Storage](https://cloud.ibm.com/apidocs/cos/cos-configuration).

## Notice

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.

## Documentation

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

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).

Expand Down
2 changes: 1 addition & 1 deletion cos_config/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__author__ = 'IBM'
__version__ = '1.1.1.dev1'
__version__ = '1.1.1'
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
requests==2.21.0
ibm-cloud-sdk-core>=0.4.2
ibm-cloud-sdk-core>=0.4.2,<=0.5.0
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,15 @@

requirements = [
'requests',
'ibm-cloud-sdk-core>=0.4.2',
'ibm-cloud-sdk-core>=0.4.2,<=0.5.0',
]


def get_version():
'''
Get the SDK version number
:return:
'''
init = open(os.path.join(ROOT, 'cos_config', '__init__.py')).read()
return VERSION_RE.search(init).group(1)

Expand Down

0 comments on commit e2df969

Please sign in to comment.