Skip to content

Commit ad804d6

Browse files
authored
Merge pull request #736 from canonical/release-1.31.0
Release 1.31.0
2 parents dad855b + 32988ef commit ad804d6

File tree

4 files changed

+25
-7
lines changed

4 files changed

+25
-7
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
[bumpversion]
2-
current_version = 1.30.0
2+
current_version = 1.31.0
33
commit = True
44
tag = True
55

6-
[bumpversion:file:docs/conf.py]
7-
search = release = "{current_version}"
8-
replace = release = "{new_version}"
9-
106
[bumpversion:file:setup.py]
117
search = VERSION = "{current_version}"
128
replace = VERSION = "{new_version}"

craft_parts/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
"""Craft a project from several parts."""
1818

19-
__version__ = "1.30.0"
19+
__version__ = "1.31.0"
2020

2121
from . import plugins
2222
from .actions import Action, ActionProperties, ActionType

docs/changelog.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,30 @@
22
Changelog
33
*********
44

5+
1.31.0 (2024-05-16)
6+
-------------------
7+
8+
- Refactored npm plugin
9+
- npm-node-version option now accepts a NVM-style version identifier
10+
- Move Node.js download to pull commands
11+
- Verify SHA256 checksums after node.js download
12+
- Use new-style npm-install commands if npm version is newer than 8.x
13+
- Set NODE_ENV to production by default
14+
- New and improved documentation
15+
- Add go plugin reference
16+
- Add nil plugin reference
17+
- Add make plugin reference
18+
- Add autotools plugin reference
19+
- Add cmake plugin reference
20+
- Add scons plugin reference
21+
- Add ant plugin reference
22+
- Add dotnet plugin reference
23+
- Add meson plugin reference
24+
- Documentation fixes
25+
526
1.30.0 (2024-05-16)
627
-------------------
28+
729
- Add support for armv8l
830
- Add support for unregistering plugins
931

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
from setuptools import find_packages, setup
2323

24-
VERSION = "1.30.0"
24+
VERSION = "1.31.0"
2525

2626
with open("README.md") as readme_file:
2727
readme = readme_file.read()

0 commit comments

Comments
 (0)