Skip to content

Commit af60a11

Browse files
authored
Merge branch 'master' into ci-test-import
2 parents 5a5721a + a7bdcb1 commit af60a11

File tree

4 files changed

+35
-5
lines changed

4 files changed

+35
-5
lines changed

CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff 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

1425
As in version 1.16.0, the replication API may still be unstable, however
@@ -359,7 +370,9 @@ has changed.
359370
### Added
360371
Initial 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

b2sdk/scan/__init__.py

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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+
######################################################################

b2sdk/scan/report.py

+3-4
Original file line numberDiff line numberDiff 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
"""

b2sdk/v1/replication/__init__.py

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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+
######################################################################

0 commit comments

Comments
 (0)