From bec9a5e666e6bb26e8ee59e6d79af98aaecfabd9 Mon Sep 17 00:00:00 2001 From: Callahan Date: Mon, 31 Oct 2022 05:40:02 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.6.0=20=E2=86=92=201.6.1=20(?= =?UTF-8?q?#170)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Callahan Kovacs --- .bumpversion.cfg | 2 +- craft_providers/__init__.py | 2 +- docs/changelog.rst | 5 +++++ docs/conf.py | 2 +- setup.py | 2 +- 5 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d1a219da..dcfce42e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.0 +current_version = 1.6.1 commit = True tag = True diff --git a/craft_providers/__init__.py b/craft_providers/__init__.py index 21ae64cd..6df1f53d 100644 --- a/craft_providers/__init__.py +++ b/craft_providers/__init__.py @@ -17,7 +17,7 @@ """Craft Providers base package.""" -__version__ = "1.6.0" # noqa: F401 +__version__ = "1.6.1" # noqa: F401 from .base import Base # noqa: F401 from .errors import ProviderError # noqa: F401 diff --git a/docs/changelog.rst b/docs/changelog.rst index a7ecf77a..c2ae2cb4 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,11 @@ Changelog ********* +1.6.1 (2022-10-31) +------------------ +- Store temporary files in the home directory +- Fix typos + 1.6.0 (2022-10-06) ------------------ - Add is_running method to base Executor class diff --git a/docs/conf.py b/docs/conf.py index 7786c489..de749c98 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -40,7 +40,7 @@ author = "Canonical Ltd." # The full version, including alpha/beta/rc tags -release = "1.6.0" +release = "1.6.1" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 43202924..4a2ff1d7 100644 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ setup( name="craft-providers", - version="1.6.0", + version="1.6.1", description="Craft provider tooling", long_description=readme, long_description_content_type="text/markdown",