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

Commit 2a798b2

Browse files
committed
Tag for 1.9.1 release
- Python 2.7 support on Windows dropped
1 parent 8f46622 commit 2a798b2

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## [1.9.1] - 2019-08-19
6+
### Fixed
7+
- Multi-process concurrency workers (MD5 and decryption) on Python 3.7+
8+
([#104](https://github.com/Azure/blobxfer/issues/104))
9+
10+
### Removed
11+
- Python 2.7 support on Windows dropped
12+
513
## [1.9.0] - 2019-07-22
614
### Added
715
- Support a `--delete-only` option which allows operations to proceed but
@@ -517,7 +525,8 @@ usage documentation carefully when upgrading from 0.12.1.
517525
`--no-skiponmatch`.
518526
- 0.8.2: performance regression fixes
519527

520-
[Unreleased]: https://github.com/Azure/blobxfer/compare/1.9.0...HEAD
528+
[Unreleased]: https://github.com/Azure/blobxfer/compare/1.9.1...HEAD
529+
[1.9.1]: https://github.com/Azure/blobxfer/compare/1.9.0...1.9.1
521530
[1.9.0]: https://github.com/Azure/blobxfer/compare/1.8.0...1.9.0
522531
[1.8.0]: https://github.com/Azure/blobxfer/compare/1.7.1...1.8.0
523532
[1.7.1]: https://github.com/Azure/blobxfer/compare/1.7.0...1.7.1

appveyor.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@ cache:
77

88
environment:
99
matrix:
10-
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
11-
PYTHON: "C:\\Python27-x64"
12-
PYTHON_VERSION: "2.7"
13-
PYTHON_ARCH: "64"
14-
TOX_ENV: "py27"
1510
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
1611
PYTHON: "C:\\Python35-x64"
1712
PYTHON_VERSION: "3.5"

blobxfer/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
2323
# DEALINGS IN THE SOFTWARE.
2424

25-
__version__ = '1.9.0'
25+
__version__ = '1.9.1'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
'pathlib2>=2.3.4;python_version<"3.5"',
3939
'python-dateutil~=2.8.0',
4040
'requests~=2.22.0',
41-
'ruamel.yaml~=0.16.4',
41+
'ruamel.yaml~=0.16.5',
4242
'scandir>=1.10.0;python_version<"3.5"',
4343
]
4444

0 commit comments

Comments
 (0)