Skip to content
This repository has been archived by the owner on Jul 18, 2024. It is now read-only.

Commit

Permalink
Tag for 1.9.1 release
Browse files Browse the repository at this point in the history
- Python 2.7 support on Windows dropped
  • Loading branch information
alfpark committed Aug 19, 2019
1 parent 8f46622 commit 2a798b2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## [Unreleased]

## [1.9.1] - 2019-08-19
### Fixed
- Multi-process concurrency workers (MD5 and decryption) on Python 3.7+
([#104](https://github.com/Azure/blobxfer/issues/104))

### Removed
- Python 2.7 support on Windows dropped

## [1.9.0] - 2019-07-22
### Added
- Support a `--delete-only` option which allows operations to proceed but
Expand Down Expand Up @@ -517,7 +525,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.9.0...HEAD
[Unreleased]: https://github.com/Azure/blobxfer/compare/1.9.1...HEAD
[1.9.1]: https://github.com/Azure/blobxfer/compare/1.9.0...1.9.1
[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
Expand Down
5 changes: 0 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@ cache:

environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
PYTHON: "C:\\Python27-x64"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "64"
TOX_ENV: "py27"
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5"
Expand Down
2 changes: 1 addition & 1 deletion blobxfer/version.py
Original file line number Diff line number Diff line change
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.9.0'
__version__ = '1.9.1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
'pathlib2>=2.3.4;python_version<"3.5"',
'python-dateutil~=2.8.0',
'requests~=2.22.0',
'ruamel.yaml~=0.16.4',
'ruamel.yaml~=0.16.5',
'scandir>=1.10.0;python_version<"3.5"',
]

Expand Down

0 comments on commit 2a798b2

Please sign in to comment.