From 4aaab4e7bbbc153e6eea0127111ddfca3f18cb00 Mon Sep 17 00:00:00 2001 From: Fred Park Date: Mon, 22 Jul 2019 18:32:27 +0000 Subject: [PATCH] Tag for 1.9.0 release --- CHANGELOG.md | 23 ++++++++++++++++++++++- blobxfer/version.py | 2 +- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cef199e..b556f1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,26 @@ ## [Unreleased] +## [1.9.0] - 2019-07-22 +### Added +- Support a `--delete-only` option which allows operations to proceed but +no transfer takes place but deletions do occur (in conjunction with +`--delete`) ([#101](https://github.com/Azure/blobxfer/issues/101)). This +option can be used for all operation types. +- Support the `--strip-components` option for `synccopy` operations +([#103](https://github.com/Azure/blobxfer/issues/103)) + +### Changed +- Updated dependencies +- Binary builds are now built against Python 3.7.4 +- Windows Docker image uses Python 3.7.4 +- Linux Docker builds are based on Alpine 3.10 + +### Fixed +- Regression in YAML config and `synccopy` operations +([#100](https://github.com/Azure/blobxfer/issues/100)) +- Allow synccopy source from Azure Files with a storage account key + ## [1.8.0] - 2019-05-30 ### Added - Server side copy support for `synccopy` commands. By default, `synccopy` @@ -497,7 +517,8 @@ usage documentation carefully when upgrading from 0.12.1. `--no-skiponmatch`. - 0.8.2: performance regression fixes -[Unreleased]: https://github.com/Azure/blobxfer/compare/1.8.0...HEAD +[Unreleased]: https://github.com/Azure/blobxfer/compare/1.9.0...HEAD +[1.9.0]: https://github.com/Azure/blobxfer/compare/1.8.0...1.9.0 [1.8.0]: https://github.com/Azure/blobxfer/compare/1.7.1...1.8.0 [1.7.1]: https://github.com/Azure/blobxfer/compare/1.7.0...1.7.1 [1.7.0]: https://github.com/Azure/blobxfer/compare/1.6.0...1.7.0 diff --git a/blobxfer/version.py b/blobxfer/version.py index 633b781..5cf155f 100644 --- a/blobxfer/version.py +++ b/blobxfer/version.py @@ -22,4 +22,4 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER # DEALINGS IN THE SOFTWARE. -__version__ = '1.8.0' +__version__ = '1.9.0'