diff --git a/.bumpversion.cfg b/.bumpversion.cfg index fe83dba..251f378 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.5.0 +current_version = 2.6.0 commit = False tag = False diff --git a/craft_store/__init__.py b/craft_store/__init__.py index e63d24f..a6f0db2 100644 --- a/craft_store/__init__.py +++ b/craft_store/__init__.py @@ -16,7 +16,7 @@ """Interact with Canonical services such as Charmhub and the Snap Store.""" -__version__ = "2.5.0" +__version__ = "2.6.0" from . import creds, endpoints, errors, models diff --git a/docs/changelog.rst b/docs/changelog.rst index b87c354..4860047 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,25 @@ ********* Changelog ********* +2.6.0 (2024-01-02) +------------------ + +- Add support for `listing revisions + `_ for a name +- Add support for `listing resource revisions + `_ +- Add support for `updating metadata for resource revisions + `_ +- Add support for `uploading a resource + `_ +- Document the `workflow for uploading and releasing a package + `_ + 2.5.0 (2023-11-23) ------------------