diff --git a/CHANGELOG.md b/CHANGELOG.md index e080005e6..a138e618b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.2.0] - 2020-11-03 + ### Added * Add support for Python 3.9 * Support for bucket to bucket sync @@ -95,7 +97,8 @@ has changed. ### Added Initial official release of SDK as a separate package (until now it was a part of B2 CLI) -[Unreleased]: https://github.com/Backblaze/b2-sdk-python/compare/v1.1.4...HEAD +[Unreleased]: https://github.com/Backblaze/b2-sdk-python/compare/v1.2.0...HEAD +[1.2.0]: https://github.com/Backblaze/b2-sdk-python/compare/v1.1.4...v1.2.0 [1.1.4]: https://github.com/Backblaze/b2-sdk-python/compare/v1.1.2...v1.1.4 [1.1.2]: https://github.com/Backblaze/b2-sdk-python/compare/v1.1.0...v1.1.2 [1.1.0]: https://github.com/Backblaze/b2-sdk-python/compare/v1.0.2...v1.1.0 diff --git a/b2sdk/version.py b/b2sdk/version.py index 610cb69ed..b866a2a2d 100644 --- a/b2sdk/version.py +++ b/b2sdk/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.1.5' +VERSION = '1.2.0' PYTHON_VERSION = '.'.join(map(str, sys.version_info[:3])) # something like: 2.7.11