File tree Expand file tree Collapse file tree 4 files changed +35
-5
lines changed
Expand file tree Collapse file tree 4 files changed +35
-5
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99### Infrastructure
1010* Add import testing on the source package after it's built
1111
12+ ## [ 1.17.2] - 2022-06-24
13+
14+ ### Fixed
15+ * Fix a race in progress reporter
16+ * Fix import of replication
17+
18+ ## [ 1.17.1] - 2022-06-23
19+
20+ ### Fixed
21+ * Fix importing scan module
22+
1223## [ 1.17.0] - 2022-06-23
1324
1425As in version 1.16.0, the replication API may still be unstable, however
@@ -359,7 +370,9 @@ has changed.
359370### Added
360371Initial official release of SDK as a separate package (until now it was a part of B2 CLI)
361372
362- [ Unreleased ] : https://github.com/Backblaze/b2-sdk-python/compare/v1.17.0...HEAD
373+ [ Unreleased ] : https://github.com/Backblaze/b2-sdk-python/compare/v1.17.2...HEAD
374+ [ 1.17.2 ] : https://github.com/Backblaze/b2-sdk-python/compare/v1.17.1...v1.17.2
375+ [ 1.17.1 ] : https://github.com/Backblaze/b2-sdk-python/compare/v1.17.0...v1.17.1
363376[ 1.17.0 ] : https://github.com/Backblaze/b2-sdk-python/compare/v1.16.0...v1.17.0
364377[ 1.16.0 ] : https://github.com/Backblaze/b2-sdk-python/compare/v1.15.0...v1.16.0
365378[ 1.15.0 ] : https://github.com/Backblaze/b2-sdk-python/compare/v1.14.1...v1.15.0
Original file line number Diff line number Diff line change 1+ ######################################################################
2+ #
3+ # File: b2sdk/scan/__init__.py
4+ #
5+ # Copyright 2022 Backblaze Inc. All Rights Reserved.
6+ #
7+ # License https://www.backblaze.com/using_b2_code.html
8+ #
9+ ######################################################################
Original file line number Diff line number Diff line change @@ -84,10 +84,9 @@ def print_completion(self, message):
8484 :type message: str
8585 """
8686 with self .lock :
87- if not self .closed :
88- self ._print_line (message , True )
89- self ._last_update_time = 0
90- self ._update_progress ()
87+ self ._print_line (message , True )
88+ self ._last_update_time = 0
89+ self ._update_progress ()
9190
9291 def update_count (self , delta : int ):
9392 """
Original file line number Diff line number Diff line change 1+ ######################################################################
2+ #
3+ # File: b2sdk/v1/replication/__init__.py
4+ #
5+ # Copyright 2022 Backblaze Inc. All Rights Reserved.
6+ #
7+ # License https://www.backblaze.com/using_b2_code.html
8+ #
9+ ######################################################################
You can’t perform that action at this time.
0 commit comments