Skip to content

Commit 7c3adb4

Browse files
committed
Release 2.1.0 version
1 parent 48ea5e3 commit 7c3adb4

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

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.1.0] - 2020-11-03
10+
911
### Added
1012
* Add support for Python 3.9
1113
* Add a possibility to append a string to the User-Agent via `B2_USER_AGENT_APPEND` env
@@ -157,7 +159,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
157159
* Fix an off-by-one issue when downloading a range of a file (affects library, but not CLI).
158160
* Better handling of some errors from the B2 service.
159161

160-
[Unreleased]: https://github.com/Backblaze/B2_Command_Line_Tool/compare/v2.0.2...HEAD
162+
[Unreleased]: https://github.com/Backblaze/B2_Command_Line_Tool/compare/v2.1.0...HEAD
163+
[2.1.0]: https://github.com/Backblaze/B2_Command_Line_Tool/compare/v2.0.2...v2.1.0
161164
[2.0.2]: https://github.com/Backblaze/B2_Command_Line_Tool/compare/v2.0.0...v2.0.2
162165
[2.0.0]: https://github.com/Backblaze/B2_Command_Line_Tool/compare/v1.4.2...v2.0.0
163166
[1.4.2]: https://github.com/Backblaze/B2_Command_Line_Tool/compare/v1.4.0...v1.4.2

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# B2 Command Line Tool
22
 [![Continuous Integration](https://github.com/Backblaze/B2_Command_Line_Tool/workflows/Continuous%20Integration/badge.svg)](https://github.com/Backblaze/B2_Command_Line_Tool/actions?query=workflow%3A%22Continuous+Integration%22) [![License](https://img.shields.io/pypi/l/b2.svg?label=License)](https://pypi.python.org/pypi/b2) [![python versions](https://img.shields.io/pypi/pyversions/b2.svg?label=python%20versions)](https://pypi.python.org/pypi/b2) [![PyPI version](https://img.shields.io/pypi/v/b2.svg?label=PyPI%20version)](https://pypi.python.org/pypi/b2)
33

4+
5+
46
The command-line tool that gives easy access to all of the capabilities of B2 Cloud Storage.
57

68
This program provides command-line access to the B2 service.
79

8-
Version 2.0.2
9-
1010
# Installation
1111

1212
This tool can be installed with:
@@ -68,7 +68,7 @@ The environment variable B2_ACCOUNT_INFO specifies the sqlite
6868
file to use for caching authentication information.
6969
The default file to use is: ~/.b2_account_info
7070

71-
For more details on one command: b2 help <command>
71+
For more details on one command: b2 <command> --help
7272

7373
When authorizing with application keys, this tool requires that the key
7474
have the 'listBuckets' capability so that it can take the bucket names

b2/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
#
99
######################################################################
1010

11-
VERSION = '2.0.3'
11+
VERSION = '2.1.0'

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
arrow>=0.8.0,<1.0.0; python_version <= '3.5'
22
arrow>=0.8.0; python_version > '3.5'
3-
b2sdk>=1.1.4,<1.2.0
3+
b2sdk>=1.2.0,<1.3.0
44
phx-class-registry==3.0.5

0 commit comments

Comments
 (0)