Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.31.0 #736

Merged
merged 4 commits into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
[bumpversion]
current_version = 1.30.0
current_version = 1.31.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}"
Expand Down
2 changes: 1 addition & 1 deletion craft_parts/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
22 changes: 22 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Loading