diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7a3de79d..7429eeb0 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.25.2 +current_version = 1.25.3 commit = True tag = True diff --git a/craft_parts/__init__.py b/craft_parts/__init__.py index 0e4872da..967bafee 100644 --- a/craft_parts/__init__.py +++ b/craft_parts/__init__.py @@ -16,7 +16,7 @@ """Craft a project from several parts.""" -__version__ = "1.25.2" +__version__ = "1.25.3" from . import plugins from .actions import Action, ActionProperties, ActionType diff --git a/docs/conf.py b/docs/conf.py index 430dd7f9..f313a283 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -37,7 +37,7 @@ author = "Canonical Ltd." # The full version, including alpha/beta/rc tags -release = "1.25.2" +release = "1.25.3" # Open Graph configuration - defines what is displayed in the website preview ogp_site_url = "https://canonical-craft-parts.readthedocs-hosted.com" diff --git a/setup.py b/setup.py index fd23883a..abad7e67 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ from setuptools import find_packages, setup # type: ignore -VERSION = "1.25.2" +VERSION = "1.25.3" with open("README.md") as readme_file: readme = readme_file.read()