Skip to content

Commit 8972fc2

Browse files
Merge pull request #72 from scottwernervt/release/0.11.0
2 parents 072dd12 + 80fd0bd commit 8972fc2

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

CHANGELOG.rst

+14
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,20 @@ Features
1111
* Start following (`Semantic Versioning <https://semver.org/>`_).
1212

1313

14+
0.11.0 (2021-01-15)
15+
+++++++++++++++++++
16+
17+
Features
18+
19+
* Atomic local file write (`#68 <https://github.com/scottwernervt/cloudstorage/pull/68>`_). Thanks @habibutsu.
20+
* New DigitalOcean Spaces Driver (`#67 <https://github.com/scottwernervt/cloudstorage/pull/67>`_). Thanks @RangelReale.
21+
22+
Bugs
23+
24+
* Convert ``bytes`` to ``str`` before saving the json file for Windows Xattr simulator (`#66 <https://github.com/scottwernervt/cloudstorage/pull/66>`_). Thanks @RangelReale!
25+
* Handle ``pathlib.Path`` properly for ``Blob.download`` download and ``Container.upload_blob`` (`#65 <https://github.com/scottwernervt/cloudstorage/pull/65>`_). Thanks @sibowsb!
26+
* Fix Bob ``NotFoundError`` message for AWS driver (`#64 <https://github.com/scottwernervt/cloudstorage/pull/64>`_). Thanks @sibowsb!
27+
1428
0.10.1 (2020-04-20)
1529
+++++++++++++++++++
1630

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
master_doc = "index"
2121

2222
project = "Cloud Storage"
23-
copyright = "Copyright 2017-2018 Scott Werner"
23+
copyright = "Copyright 2017-2021 Scott Werner"
2424
author = "Scott Werner"
25-
version = release = "0.10.1"
25+
version = release = "0.11.0"
2626

2727
# on_rtd is whether we are on readthedocs.org
2828
on_rtd = os.environ.get("READTHEDOCS", None) == "True"

src/cloudstorage/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
]
2121

2222
__title__ = "Cloud Storage"
23-
__version__ = "0.10.1"
23+
__version__ = "0.11.0"
2424
__author__ = "Scott Werner"
2525
__license__ = "MIT"
2626
__copyright__ = "Copyright 2017-2018 Scott Werner"

0 commit comments

Comments
 (0)