Skip to content

Commit

Permalink
Increment version number, add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Fields committed Oct 30, 2018
1 parent 8c91ca7 commit 4c51ce0
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
33 changes: 33 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@

## Changelog

#### v0.2.1

**Python version update**
Python version:
- Python 3 required!

**Breaking API changes:**
- (B2File) delete: changed to delete_version

**Nonbreaking API changes:**

B2File:
- hide added
- delete_version added
- delete_all_versions(confirm=False) added

B2FileList
- all(introduced new parameter: include_hidden)
- delete_all(confirm=False) added
- get_versions(file_name=None, file_id=None, limit=None) added
- all_file_versions(limit=None) added

b2_exceptions.py
- Changed API error classes to match Backblaze API docs
- added base API exception B2Exception.
- Handle non-200 status code responses with 'raise B2Exception.parse(response)` <-- would be happy to think up a better way to handle this

tests.py
- added and cleaned up integration tests
- tests can now be run with `python tests.py`
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import setup, find_packages

VERSION = '0.2.0'
VERSION = '0.2.1'

from os import path
this_directory = path.abspath(path.dirname(__file__))
Expand Down

0 comments on commit 4c51ce0

Please sign in to comment.