Skip to content

Commit 46dfea0

Browse files
committed
Release 2.3.0 version
1 parent 89387c6 commit 46dfea0

3 files changed

Lines changed: 17 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [2.3.0] - 2021-03-25
10+
911
### Added
1012
* Add support for SSE-B2 server-side encryption mode
1113

@@ -182,7 +184,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
182184
* Fix an off-by-one issue when downloading a range of a file (affects library, but not CLI).
183185
* Better handling of some errors from the B2 service.
184186

185-
[Unreleased]: https://github.com/Backblaze/B2_Command_Line_Tool/compare/v2.2.0...HEAD
187+
[Unreleased]: https://github.com/Backblaze/B2_Command_Line_Tool/compare/v2.3.0...HEAD
188+
[2.3.0]: https://github.com/Backblaze/B2_Command_Line_Tool/compare/v2.2.0...v2.3.0
186189
[2.2.0]: https://github.com/Backblaze/B2_Command_Line_Tool/compare/v2.1.0...v2.2.0
187190
[2.1.0]: https://github.com/Backblaze/B2_Command_Line_Tool/compare/v2.0.2...v2.1.0
188191
[2.0.2]: https://github.com/Backblaze/B2_Command_Line_Tool/compare/v2.0.0...v2.0.2

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,11 @@ This tool can be installed with:
2424
b2 cancel-all-unfinished-large-files [-h] bucketName
2525
b2 cancel-large-file [-h] fileId
2626
b2 clear-account [-h]
27-
b2 copy-file-by-id [-h] [--metadataDirective {copy,replace}] [--contentType CONTENTTYPE] [--range RANGE] [--info INFO] sourceFileId destinationBucketName b2FileName
28-
b2 create-bucket [-h] [--bucketInfo BUCKETINFO] [--corsRules CORSRULES] [--lifecycleRules LIFECYCLERULES] bucketName bucketType
27+
b2 copy-file-by-id [-h] [--metadataDirective {copy,replace}] [--contentType CONTENTTYPE] [--range RANGE] [--info INFO] [--destinationServerSideEncryption {SSE-B2}]
28+
[--destinationServerSideEncryptionAlgorithm {AES256}]
29+
sourceFileId destinationBucketName b2FileName
30+
b2 create-bucket [-h] [--bucketInfo BUCKETINFO] [--corsRules CORSRULES] [--lifecycleRules LIFECYCLERULES] [--defaultServerSideEncryption {SSE-B2,none}] [--defaultServerSideEncryptionAlgorithm {AES256}]
31+
bucketName bucketType
2932
b2 create-key [-h] [--bucket BUCKET] [--namePrefix NAMEPREFIX] [--duration DURATION] keyName capabilities
3033
b2 delete-bucket [-h] bucketName
3134
b2 delete-file-version [-h] [fileName] fileId
@@ -46,10 +49,14 @@ This tool can be installed with:
4649
b2 make-url [-h] fileId
4750
b2 make-friendly-url [-h] bucketName fileName
4851
b2 sync [-h] [--noProgress] [--dryRun] [--allowEmptySource] [--excludeAllSymlinks] [--threads THREADS] [--compareVersions {none,modTime,size}] [--compareThreshold MILLIS] [--excludeRegex REGEX]
49-
[--includeRegex REGEX] [--excludeDirRegex REGEX] [--excludeIfModifiedAfter TIMESTAMP] [--skipNewer | --replaceNewer] [--delete | --keepDays DAYS]
52+
[--includeRegex REGEX] [--excludeDirRegex REGEX] [--excludeIfModifiedAfter TIMESTAMP] [--destinationServerSideEncryption {SSE-B2}] [--destinationServerSideEncryptionAlgorithm {AES256}]
53+
[--skipNewer | --replaceNewer] [--delete | --keepDays DAYS]
5054
source destination
51-
b2 update-bucket [-h] [--bucketInfo BUCKETINFO] [--corsRules CORSRULES] [--lifecycleRules LIFECYCLERULES] bucketName bucketType
52-
b2 upload-file [-h] [--noProgress] [--quiet] [--contentType CONTENTTYPE] [--minPartSize MINPARTSIZE] [--sha1 SHA1] [--threads THREADS] [--info INFO] bucketName localFilePath b2FileName
55+
b2 update-bucket [-h] [--bucketInfo BUCKETINFO] [--corsRules CORSRULES] [--lifecycleRules LIFECYCLERULES] [--defaultServerSideEncryption {SSE-B2,none}] [--defaultServerSideEncryptionAlgorithm {AES256}]
56+
bucketName bucketType
57+
b2 upload-file [-h] [--noProgress] [--quiet] [--contentType CONTENTTYPE] [--minPartSize MINPARTSIZE] [--sha1 SHA1] [--threads THREADS] [--info INFO] [--destinationServerSideEncryption {SSE-B2}]
58+
[--destinationServerSideEncryptionAlgorithm {AES256}]
59+
bucketName localFilePath b2FileName
5360
b2 version [-h]
5461

5562

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
arrow>=0.8.0,<1.0.0
2-
b2sdk>=1.4.0,<2.0.0
2+
b2sdk>=1.5.0,<2.0.0
33
docutils==0.16
44
importlib-metadata>=2.1.1,<3.0.0; python_version <= '3.5'
55
importlib-metadata>=3.3.0; python_version > '3.5' and python_version < '3.8'

0 commit comments

Comments
 (0)