diff --git a/CHANGELOG.md b/CHANGELOG.md index be042c5..f8d02c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## [Unreleased] +## [1.0.0rc1] - 2017-10-05 ### Added - Expanded `blobxfer.api` to eliminate other imports - Data movement library usage guide @@ -11,6 +12,7 @@ the `-v` verbose option ### Changed - `version` property for YAML configuration is now required - `--rename` is automatically enabled for when `stdin` is the source +- `--include` and `--exclude` filters are now checked for invalid rglob specs - Update dependencies to latest ### Fixed @@ -266,7 +268,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.0.0b2...HEAD +[Unreleased]: https://github.com/Azure/blobxfer/compare/1.0.0rc1...HEAD +[1.0.0rc1]: https://github.com/Azure/blobxfer/compare/1.0.0b2...1.0.0rc1 [1.0.0b2]: https://github.com/Azure/blobxfer/compare/1.0.0b1...1.0.0b2 [1.0.0b1]: https://github.com/Azure/blobxfer/compare/1.0.0a5...1.0.0b1 [1.0.0a5]: https://github.com/Azure/blobxfer/compare/1.0.0a4...1.0.0a5 diff --git a/blobxfer/version.py b/blobxfer/version.py index 6fa49f1..066636d 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.0.0b2' +__version__ = '1.0.0rc1' diff --git a/setup.py b/setup.py index 2fd37ba..d9e58da 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ version=version, author='Microsoft Corporation', author_email='', - description='Azure storage transfer tool and library', + description='Azure storage transfer tool and data movement library', platforms='any', url='https://github.com/Azure/blobxfer', license='MIT',