Skip to content

Commit

Permalink
Merge pull request #72 from scottwernervt/release/0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
scottwernervt authored Jan 15, 2021
2 parents 072dd12 + 80fd0bd commit 8972fc2
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,20 @@ Features
* Start following (`Semantic Versioning <https://semver.org/>`_).


0.11.0 (2021-01-15)
+++++++++++++++++++

Features

* Atomic local file write (`#68 <https://github.com/scottwernervt/cloudstorage/pull/68>`_). Thanks @habibutsu.
* New DigitalOcean Spaces Driver (`#67 <https://github.com/scottwernervt/cloudstorage/pull/67>`_). Thanks @RangelReale.

Bugs

* Convert ``bytes`` to ``str`` before saving the json file for Windows Xattr simulator (`#66 <https://github.com/scottwernervt/cloudstorage/pull/66>`_). Thanks @RangelReale!
* Handle ``pathlib.Path`` properly for ``Blob.download`` download and ``Container.upload_blob`` (`#65 <https://github.com/scottwernervt/cloudstorage/pull/65>`_). Thanks @sibowsb!
* Fix Bob ``NotFoundError`` message for AWS driver (`#64 <https://github.com/scottwernervt/cloudstorage/pull/64>`_). Thanks @sibowsb!

0.10.1 (2020-04-20)
+++++++++++++++++++

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
master_doc = "index"

project = "Cloud Storage"
copyright = "Copyright 2017-2018 Scott Werner"
copyright = "Copyright 2017-2021 Scott Werner"
author = "Scott Werner"
version = release = "0.10.1"
version = release = "0.11.0"

# on_rtd is whether we are on readthedocs.org
on_rtd = os.environ.get("READTHEDOCS", None) == "True"
Expand Down
2 changes: 1 addition & 1 deletion src/cloudstorage/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
]

__title__ = "Cloud Storage"
__version__ = "0.10.1"
__version__ = "0.11.0"
__author__ = "Scott Werner"
__license__ = "MIT"
__copyright__ = "Copyright 2017-2018 Scott Werner"
Expand Down

0 comments on commit 8972fc2

Please sign in to comment.