File tree 4 files changed +35
-5
lines changed
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
9
9
### Infrastructure
10
10
* Add import testing on the source package after it's built
11
11
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
+
12
23
## [ 1.17.0] - 2022-06-23
13
24
14
25
As in version 1.16.0, the replication API may still be unstable, however
@@ -359,7 +370,9 @@ has changed.
359
370
### Added
360
371
Initial official release of SDK as a separate package (until now it was a part of B2 CLI)
361
372
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
363
376
[ 1.17.0 ] : https://github.com/Backblaze/b2-sdk-python/compare/v1.16.0...v1.17.0
364
377
[ 1.16.0 ] : https://github.com/Backblaze/b2-sdk-python/compare/v1.15.0...v1.16.0
365
378
[ 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):
84
84
:type message: str
85
85
"""
86
86
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 ()
91
90
92
91
def update_count (self , delta : int ):
93
92
"""
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