File tree Expand file tree Collapse file tree 4 files changed +25
-7
lines changed Expand file tree Collapse file tree 4 files changed +25
-7
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 1.30 .0
2
+ current_version = 1.31 .0
3
3
commit = True
4
4
tag = True
5
5
6
- [bumpversion:file:docs/conf.py]
7
- search = release = " {current_version}"
8
- replace = release = " {new_version}"
9
-
10
6
[bumpversion:file:setup.py]
11
7
search = VERSION = " {current_version}"
12
8
replace = VERSION = " {new_version}"
Original file line number Diff line number Diff line change 16
16
17
17
"""Craft a project from several parts."""
18
18
19
- __version__ = "1.30 .0"
19
+ __version__ = "1.31 .0"
20
20
21
21
from . import plugins
22
22
from .actions import Action , ActionProperties , ActionType
Original file line number Diff line number Diff line change 2
2
Changelog
3
3
*********
4
4
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
+
5
26
1.30.0 (2024-05-16)
6
27
-------------------
28
+
7
29
- Add support for armv8l
8
30
- Add support for unregistering plugins
9
31
Original file line number Diff line number Diff line change 21
21
22
22
from setuptools import find_packages , setup
23
23
24
- VERSION = "1.30 .0"
24
+ VERSION = "1.31 .0"
25
25
26
26
with open ("README.md" ) as readme_file :
27
27
readme = readme_file .read ()
You can’t perform that action at this time.
0 commit comments