Skip to content

Commit

Permalink
Tag for 1.0.0rc1 release
Browse files Browse the repository at this point in the history
- Update to Python 3.6.3 for Windows Docker image build
  • Loading branch information
alfpark committed Oct 5, 2017
1 parent 7bbdfba commit a5918c6
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Expand Up @@ -2,6 +2,7 @@

## [Unreleased]

## [1.0.0rc1] - 2017-10-05
### Added
- Expanded `blobxfer.api` to eliminate other imports
- Data movement library usage guide
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -60,9 +60,9 @@ Please refer to the [`blobxfer` documentation](http://blobxfer.readthedocs.io/)
for more details and usage information.

## Change Log
For recent changes, please refer to the
[CHANGELOG.md](https://github.com/Azure/blobxfer/blob/master/CHANGELOG.md)
file.
Please see the
[Change Log](http://blobxfer.readthedocs.io/en/latest/CHANGELOG/)
for project history.

* * *
Please see this project's [Code of Conduct](CODE_OF_CONDUCT.md) and
Expand Down
2 changes: 1 addition & 1 deletion blobxfer/version.py
Expand Up @@ -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'
4 changes: 2 additions & 2 deletions docker/win/Dockerfile
@@ -1,7 +1,7 @@
# Dockerfile for Azure/blobxfer (Windows)
# Adapted from: https://github.com/StefanScherer/dockerfiles-windows/blob/master/python/Dockerfile

FROM python:3.6.2-windowsservercore
FROM python:3.6.3-windowsservercore
MAINTAINER Fred Park <https://github.com/Azure/blobxfer>

ENV chocolateyUseWindowsCompression false
Expand All @@ -27,7 +27,7 @@ COPY --from=0 /blobxfer/THIRD_PARTY_NOTICES.txt /BLOBXFER_THIRD_PARTY_NOTICES.tx

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

ENV PYTHON_VERSION 3.6.2
ENV PYTHON_VERSION 3.6.3
ENV PYTHON_PIP_VERSION 9.0.1

RUN $env:PATH = 'C:\Python;C:\Python\Scripts;{0}' -f $env:PATH ; \
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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',
Expand Down

0 comments on commit a5918c6

Please sign in to comment.