Skip to content

Commit

Permalink
Merge pull request #55 from canonical/release-2.1
Browse files Browse the repository at this point in the history
release 2.1.0
  • Loading branch information
sergiusens committed Apr 19, 2022
2 parents 7bcff13 + db571c4 commit d0e127a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
current_version = 0.0.1.dev1
commit = True
tag = True
current_version = 2.1.0
commit = False
tag = False

[bumpversion:file:craft_store/__init__.py]
search = __version__ = "{current_version}"
Expand Down
2 changes: 1 addition & 1 deletion craft_store/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

"""Interact with Canonical services such as Charmhub and the Snap Store."""

__version__ = "2.0.0"
__version__ = "2.1.0"


from . import endpoints, errors, models
Expand Down
18 changes: 14 additions & 4 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
Changelog
*********

2.1.0 (2022-03-19)
------------------

- Support for ephemeral logins in :class:`craft_store.BaseClient`
- New endpoint to complete the upload experience
:meth:`craft_store.BaseClient.notify_revision`
- New endpoint to release :meth:`craft_store.BaseClient.release` and retrieve
release information :meth:`craft_store.BaseClient.get_list_releases`
- Support for Python 3.10

2.0.1 (2022-02-10)
------------------

Expand All @@ -15,8 +25,8 @@ Changelog
------------------

- New endpoint for uploads to storage,
:class:`craft_store.store_client.StoreClient` and
:class:`craft_store.ubuntu_one_store_client.UbuntuOneStoreClient` require a
:class:`craft_store.StoreClient` and
:class:`craft_store.UbuntuOneStoreClient` require a
new initialization new parameter
- Setting credentials while credentials are already set is no longer allowed
:class:`craft_store.errors.CredentialsAlreadyAvailable` is raised if
Expand All @@ -31,7 +41,7 @@ Changelog

- New whoami endpoint for :class:`craft_store.endpoints.CHARMHUB`
- New class to provide login support for Ubuntu One SSO
:class:`craft_store.ubuntu_one_store_client.UbuntuOneStoreClient`
:class:`craft_store.UbuntuOneStoreClient`

1.1.0 (2021-11-19)
------------------
Expand All @@ -40,7 +50,7 @@ Changelog
- :class:`craft_store.store_client.StoreClient` support for retrieving
credentials from an environment variable
- Login credentials now returned from
:meth:`craft_store.store_client.StoreClient.login()`
:meth:`craft_store.BaseClient.login`


1.0.0 (2021-10-21)
Expand Down

0 comments on commit d0e127a

Please sign in to comment.