From a6775e7c946a20931565ba9ef1b6e73e1283d86d Mon Sep 17 00:00:00 2001 From: Claudio Matsuoka Date: Fri, 17 May 2024 14:50:30 +0200 Subject: [PATCH 1/4] docs: update changelog Signed-off-by: Claudio Matsuoka --- docs/changelog.rst | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index ab021c467..042d26ef6 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,8 +2,30 @@ Changelog ********* +1.31.0 (2024-05-16) +------------------- + +- Refactored npm plugin + - npm-node-version option now accepts a NVM-style version identifier + - Move Node.js download to pull commands + - Verify SHA256 checksums after node.js download + - Use new-style npm-install commands if npm version is newer than 8.x + - Set NODE_ENV to production by default +- New and improved documentation + - Add go plugin reference + - Add nil plugin reference + - Add make pliugin reference + - Add autotools plugin reference + - Add cmake plugin reference + - Add scons plugin reference + - Add ant plugin reference + - Add dotnet plugin reference + - Add meson plugin reference + - Documentation fixes + 1.30.0 (2024-05-16) ------------------- + - Add support for armv8l - Add support for unregistering plugins From a7efe776fa138f3a0c86f99b9320408dea71ae9e Mon Sep 17 00:00:00 2001 From: Claudio Matsuoka Date: Fri, 17 May 2024 15:00:03 +0200 Subject: [PATCH 2/4] chore: fix bumpversion configuration Signed-off-by: Claudio Matsuoka --- .bumpversion.cfg | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3dc56c6c2..b0bbc1711 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -3,10 +3,6 @@ current_version = 1.30.0 commit = True tag = True -[bumpversion:file:docs/conf.py] -search = release = "{current_version}" -replace = release = "{new_version}" - [bumpversion:file:setup.py] search = VERSION = "{current_version}" replace = VERSION = "{new_version}" From 6221cfca8e9ffaf28730e7533e2140feaf4f02b7 Mon Sep 17 00:00:00 2001 From: Claudio Matsuoka Date: Fri, 17 May 2024 15:01:37 +0200 Subject: [PATCH 3/4] =?UTF-8?q?Bump=20version:=201.30.0=20=E2=86=92=201.31?= =?UTF-8?q?.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- craft_parts/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b0bbc1711..3189d69f8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.30.0 +current_version = 1.31.0 commit = True tag = True diff --git a/craft_parts/__init__.py b/craft_parts/__init__.py index f3aad5289..9dd19c138 100644 --- a/craft_parts/__init__.py +++ b/craft_parts/__init__.py @@ -16,7 +16,7 @@ """Craft a project from several parts.""" -__version__ = "1.30.0" +__version__ = "1.31.0" from . import plugins from .actions import Action, ActionProperties, ActionType diff --git a/setup.py b/setup.py index 1d46201c9..1ee6b2a37 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ from setuptools import find_packages, setup -VERSION = "1.30.0" +VERSION = "1.31.0" with open("README.md") as readme_file: readme = readme_file.read() From 32988ef4e199d4639389dcf5ca07cd6cfa68d9b1 Mon Sep 17 00:00:00 2001 From: Claudio Matsuoka Date: Fri, 17 May 2024 17:57:42 +0200 Subject: [PATCH 4/4] chore: fix typo in changelog Signed-off-by: Claudio Matsuoka --- docs/changelog.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 042d26ef6..f3fa4e5f0 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -14,7 +14,7 @@ Changelog - New and improved documentation - Add go plugin reference - Add nil plugin reference - - Add make pliugin reference + - Add make plugin reference - Add autotools plugin reference - Add cmake plugin reference - Add scons plugin reference