Skip to content

Commit

Permalink
Release 2.1.0 version
Browse files Browse the repository at this point in the history
  • Loading branch information
mlech-reef committed Nov 3, 2020
1 parent 48ea5e3 commit 7c3adb4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.1.0] - 2020-11-03

### Added
* Add support for Python 3.9
* Add a possibility to append a string to the User-Agent via `B2_USER_AGENT_APPEND` env
Expand Down Expand Up @@ -157,7 +159,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Fix an off-by-one issue when downloading a range of a file (affects library, but not CLI).
* Better handling of some errors from the B2 service.

[Unreleased]: https://github.com/Backblaze/B2_Command_Line_Tool/compare/v2.0.2...HEAD
[Unreleased]: https://github.com/Backblaze/B2_Command_Line_Tool/compare/v2.1.0...HEAD
[2.1.0]: https://github.com/Backblaze/B2_Command_Line_Tool/compare/v2.0.2...v2.1.0
[2.0.2]: https://github.com/Backblaze/B2_Command_Line_Tool/compare/v2.0.0...v2.0.2
[2.0.0]: https://github.com/Backblaze/B2_Command_Line_Tool/compare/v1.4.2...v2.0.0
[1.4.2]: https://github.com/Backblaze/B2_Command_Line_Tool/compare/v1.4.0...v1.4.2
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# B2 Command Line Tool
 [![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)



The command-line tool that gives easy access to all of the capabilities of B2 Cloud Storage.

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

Version 2.0.2

# Installation

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

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

When authorizing with application keys, this tool requires that the key
have the 'listBuckets' capability so that it can take the bucket names
Expand Down
2 changes: 1 addition & 1 deletion b2/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
#
######################################################################

VERSION = '2.0.3'
VERSION = '2.1.0'
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
arrow>=0.8.0,<1.0.0; python_version <= '3.5'
arrow>=0.8.0; python_version > '3.5'
b2sdk>=1.1.4,<1.2.0
b2sdk>=1.2.0,<1.3.0
phx-class-registry==3.0.5

0 comments on commit 7c3adb4

Please sign in to comment.