Skip to content

Commit

Permalink
Merge pull request #736 from canonical/release-1.31.0
Browse files Browse the repository at this point in the history
Release 1.31.0
  • Loading branch information
cmatsuoka authored May 22, 2024
2 parents dad855b + 32988ef commit ad804d6
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 7 deletions.
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 plugin 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

0 comments on commit ad804d6

Please sign in to comment.