From ed29dcc9c4a1faf0a3e051d99fd1fbb0186d9204 Mon Sep 17 00:00:00 2001 From: Alex Lowe Date: Fri, 27 Sep 2024 14:50:21 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.25.2=20=E2=86=92=201.25.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- craft_parts/__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 7a3de79db..7429eeb04 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 0e4872dad..967bafee3 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 430dd7f96..f313a283c 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 fd23883a3..abad7e673 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()