From d525fe4a0f2f8b0308f37a2eb00cea41f9ce4042 Mon Sep 17 00:00:00 2001 From: Claudio Matsuoka Date: Thu, 19 Jan 2023 18:17:01 -0300 Subject: [PATCH] Release 1.18.0 (#352) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * docs: update changelog * Bump version: 1.17.1 → 1.18.0 Signed-off-by: Claudio Matsuoka --- .bumpversion.cfg | 2 +- craft_parts/__init__.py | 2 +- docs/conf.py | 2 +- docs/reference/changelog.rst | 12 ++++++++++++ setup.py | 2 +- 5 files changed, 16 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index affc49541..e6e7c2b21 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.17.1 +current_version = 1.18.0 commit = True tag = True diff --git a/craft_parts/__init__.py b/craft_parts/__init__.py index bce48dcd4..d33892abc 100644 --- a/craft_parts/__init__.py +++ b/craft_parts/__init__.py @@ -16,7 +16,7 @@ """Craft a project from several parts.""" -__version__ = "1.17.1" +__version__ = "1.18.0" from . import plugins from .actions import Action, ActionProperties, ActionType diff --git a/docs/conf.py b/docs/conf.py index d251333ca..197993468 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.17.1" +release = "1.18.0" # -- General configuration --------------------------------------------------- diff --git a/docs/reference/changelog.rst b/docs/reference/changelog.rst index e190677ff..39e79514c 100644 --- a/docs/reference/changelog.rst +++ b/docs/reference/changelog.rst @@ -2,6 +2,18 @@ Changelog ********* +1.18.0 (2023-01-19) +------------------- + +- Add SCons plugin +- Add Ant plugin +- Add Maven plugin +- Fix lifecycle work directory cleaning +- Make stage package tracking optional +- Improve chisel error handling +- Improve missing local source error message +- Documentation fixes and updates + 1.17.1 (2022-11-23) ------------------- diff --git a/setup.py b/setup.py index ba45a64b9..8adb69524 100644 --- a/setup.py +++ b/setup.py @@ -96,7 +96,7 @@ def is_rtd() -> bool: setup( name="craft-parts", - version="1.17.1", + version="1.18.0", description="Craft parts tooling", long_description=readme, author="Canonical Ltd.",