From 5ddc920940344200cf335c7a7336d5e0582b1cc0 Mon Sep 17 00:00:00 2001 From: Brian Beach Date: Thu, 30 Nov 2017 15:55:23 -1000 Subject: [PATCH] Version number 1.1.0 for release. --- README.md | 8 +++++++- b2/version.py | 2 +- setup.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c16a6108a..389c3cf1a 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ The command-line tool that gives easy access to all of the capabilities of B2 Cl This program provides command-line access to the B2 service. -Version 1.0.0 +Version 1.1.0 # Installation @@ -81,6 +81,12 @@ For advanced users, a hidden option `--logConfig ` can be used to # Release History +## 1.1.0 (November 30, 2017) + +Just one change in this release: + +* Add support for CORS rules in `create-bucket` and `update-bucket`. `get-bucket` will display CORS rules. + ## 1.0.0 (November 9, 2017) This is the same code as 0.7.4, with one incompatible change: diff --git a/b2/version.py b/b2/version.py index 31206c5c4..386a55493 100644 --- a/b2/version.py +++ b/b2/version.py @@ -13,7 +13,7 @@ # To avoid confusion between official Backblaze releases of this tool and # the versions on Github, we use the convention that the third number is # odd for Github, and even for Backblaze releases. -VERSION = '1.0.0' +VERSION = '1.1.0' PYTHON_VERSION = '.'.join(map(str, sys.version_info[:3])) # something like: 2.7.11 diff --git a/setup.py b/setup.py index 6e61ef587..78d02bf8d 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # https://packaging.python.org/en/latest/single_source_version.html - version='1.0.0', + version='1.1.0', description='Command Line Tool for Backblaze B2', long_description=long_description,