From 36e8312437dba9c7ff00f54c3778e2525fa61eba Mon Sep 17 00:00:00 2001 From: Alex Lowe Date: Tue, 2 Jan 2024 17:01:25 -0500 Subject: [PATCH] chore: release 2.6.0 (#151) --- .bumpversion.cfg | 2 +- craft_store/__init__.py | 2 +- docs/changelog.rst | 19 +++++++++++++++++++ 3 files changed, 21 insertions(+), 2 deletions(-) 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) ------------------