From 3366a5b5ceb4cdb20e439bbc88de075b0f487971 Mon Sep 17 00:00:00 2001 From: Claudio Matsuoka Date: Wed, 2 Mar 2022 09:41:21 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.0.3=20=E2=86=92=201.0.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- craft_providers/__init__.py | 2 +- docs/conf.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b5844446..951317cd 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.3 +current_version = 1.0.4 commit = True tag = True diff --git a/craft_providers/__init__.py b/craft_providers/__init__.py index 9cc349ed..f12ce572 100644 --- a/craft_providers/__init__.py +++ b/craft_providers/__init__.py @@ -17,7 +17,7 @@ """Craft Providers base package.""" -__version__ = "1.0.3" # noqa: F401 +__version__ = "1.0.4" # noqa: F401 from .base import Base # noqa: F401 from .errors import ProviderError # noqa: F401 diff --git a/docs/conf.py b/docs/conf.py index 3f23b1a0..e3cac3f4 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.0.3" +release = "1.0.4" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index ce8d77a8..406918a7 100644 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ setup( name="craft-providers", - version="1.0.3", + version="1.0.4", description="Craft provider tooling", long_description=readme, long_description_content_type="text/markdown",