Skip to content

Commit 7547ede

Browse files
committed
Add changelog for v3.0.0
1 parent 2584e86 commit 7547ede

3 files changed

Lines changed: 13 additions & 3 deletions

File tree

CHANGELOG.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
3.0.0 - December 3, 2021 (sha 327e330bed78b8b70c9ff9d256513d71bc27545f)
2+
---------------------------------------------------------------------
3+
4+
* This is a major release due to packaging changes, although there are no backward incompatible interface changes.
5+
* The cloudbridge package no longer installs any providers by default, and you must use `pip install cloudbridge[full]`
6+
instead of `pip install cloudbridge` to obtain previous behaviour. This is to allow greater control over what
7+
providers are installed. To install only specific providers, use `pip install cloudbridge[aws,gcp]` etc. #292
8+
(thanks to @RyanSiu1995)
9+
* Allow users to create signed urls with write permissions #292 (thanks to @FabioRosado)
10+
111
2.2.0 - November 5, 2021 (sha f3fb8e18781cd3ede4509ef75a69e7c2a420a167)
212
---------------------------------------------------------------------
313

cloudbridge/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import logging
33

44
# Current version of the library
5-
__version__ = '2.2.0'
5+
__version__ = '3.0.0'
66

77

88
def get_version():

docs/topics/release_process.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ Release Process
3333
# remove stale files or wheel might package them
3434
rm -r build dist
3535
python setup.py sdist bdist_wheel
36-
twine upload -r pypi dist/cloudbridge-1.0.0*
36+
twine upload -r pypi dist/cloudbridge-3.0.0*
3737
3838
6. Tag release and make a GitHub release.
3939

4040
.. code-block:: bash
4141
42-
git tag -a v2.0.0 -m "Release 2.0.0"
42+
git tag -a v3.0.0 -m "Release 3.0.0"
4343
git push
4444
git push --tags
4545

0 commit comments

Comments
 (0)