Skip to content

Commit

Permalink
Merge branch 'master' into ci-test-import
Browse files Browse the repository at this point in the history
  • Loading branch information
ppolewicz authored Jun 23, 2022
2 parents 5a5721a + a7bdcb1 commit af60a11
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 5 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Infrastructure
* Add import testing on the source package after it's built

## [1.17.2] - 2022-06-24

### Fixed
* Fix a race in progress reporter
* Fix import of replication

## [1.17.1] - 2022-06-23

### Fixed
* Fix importing scan module

## [1.17.0] - 2022-06-23

As in version 1.16.0, the replication API may still be unstable, however
Expand Down Expand Up @@ -359,7 +370,9 @@ has changed.
### Added
Initial official release of SDK as a separate package (until now it was a part of B2 CLI)

[Unreleased]: https://github.com/Backblaze/b2-sdk-python/compare/v1.17.0...HEAD
[Unreleased]: https://github.com/Backblaze/b2-sdk-python/compare/v1.17.2...HEAD
[1.17.2]: https://github.com/Backblaze/b2-sdk-python/compare/v1.17.1...v1.17.2
[1.17.1]: https://github.com/Backblaze/b2-sdk-python/compare/v1.17.0...v1.17.1
[1.17.0]: https://github.com/Backblaze/b2-sdk-python/compare/v1.16.0...v1.17.0
[1.16.0]: https://github.com/Backblaze/b2-sdk-python/compare/v1.15.0...v1.16.0
[1.15.0]: https://github.com/Backblaze/b2-sdk-python/compare/v1.14.1...v1.15.0
Expand Down
9 changes: 9 additions & 0 deletions b2sdk/scan/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
######################################################################
#
# File: b2sdk/scan/__init__.py
#
# Copyright 2022 Backblaze Inc. All Rights Reserved.
#
# License https://www.backblaze.com/using_b2_code.html
#
######################################################################
7 changes: 3 additions & 4 deletions b2sdk/scan/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,9 @@ def print_completion(self, message):
:type message: str
"""
with self.lock:
if not self.closed:
self._print_line(message, True)
self._last_update_time = 0
self._update_progress()
self._print_line(message, True)
self._last_update_time = 0
self._update_progress()

def update_count(self, delta: int):
"""
Expand Down
9 changes: 9 additions & 0 deletions b2sdk/v1/replication/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
######################################################################
#
# File: b2sdk/v1/replication/__init__.py
#
# Copyright 2022 Backblaze Inc. All Rights Reserved.
#
# License https://www.backblaze.com/using_b2_code.html
#
######################################################################

0 comments on commit af60a11

Please sign in to comment.