Skip to content

Commit 73a4536

Browse files
committed
Release 0.22.0-rc0
1 parent 13ec09f commit 73a4536

File tree

4 files changed

+25
-4
lines changed

4 files changed

+25
-4
lines changed

CHANGELOG.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Changelog
22
---------
33

4+
0.22.0-rc0 (2025-09-04)
5+
~~~~~~~~~~~~~~~~~~~~~~~
6+
47
- Adds experimental support for Ansible 12
58
Some things are still broken like `extra_vars`
69
[Daverball]

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
# built documents.
6161
#
6262
# The short X.Y version.
63-
version = '0.21.0'
63+
version = '0.22.0-rc0'
6464
# The full version, including alpha/beta/rc tags.
65-
release = '0.21.0'
65+
release = '0.22.0-rc0'
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# for a list of supported languages.

pyproject.toml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,11 +156,29 @@ docstring-code-format = true
156156
docstring-code-line-length = "dynamic"
157157

158158
[tool.bumpversion]
159-
current_version = "0.21.0"
159+
current_version = "0.22.0-rc0"
160160
commit = true
161161
message = "Release {new_version}"
162162
tag = true
163163
tag_message = "Release {new_version}"
164+
parse = """(?x)
165+
(?P<major>0|[1-9]\\d*)\\.
166+
(?P<minor>0|[1-9]\\d*)\\.
167+
(?P<patch>0|[1-9]\\d*)
168+
(?:
169+
- # dash separator for pre-release section
170+
(?P<pre_l>[a-zA-Z-]+) # pre-release label
171+
(?P<pre_n>0|[1-9]\\d*) # pre-release version number
172+
)? # pre-release section is optional
173+
"""
174+
serialize = [
175+
"{major}.{minor}.{patch}-{pre_l}{pre_n}",
176+
"{major}.{minor}.{patch}",
177+
]
178+
179+
[tool.bumpversion.parts.pre_l]
180+
values = ["rc", "final"]
181+
optional_value = "final"
164182

165183
[[tool.bumpversion.files]]
166184
filename="setup.cfg"

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = suitable
3-
version = 0.21.0
3+
version = 0.22.0-rc0
44
url = http://github.com/seantis/suitable/
55
author = Denis Krienbühl
66
author_email = denis@href.ch

0 commit comments

Comments
 (0)