Skip to content

Commit

Permalink
prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
HDembinski committed Jul 17, 2022
1 parent 75547c6 commit 8e0407c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
13 changes: 6 additions & 7 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@
Changelog
=========

2.12.3b1 (July 16, 2022)
------------------------
- Minor improvements

2.12.3b2 (July 16, 2022)
------------------------
- Minor improvements
2.13.0 (July 17, 2022)
----------------------
- Interpolated mncontour (#764)
- Added mnmatrix plot (#763)
- Close mncontour for convenience (#761)
- Update tutorials (#760)

2.12.2 (July 15, 2022)
----------------------
Expand Down
5 changes: 2 additions & 3 deletions doc/update_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@
position = m.span(0)[0]

# sanity checks
assert previous_version == latest_tag
assert new_version > previous_version
assert new_version > previous_version, f"{new_version} > {previous_version}"

git_log = re.findall(
r"[a-z0-9]+ ([^\n]+ \(#[0-9]+\))",
Expand All @@ -54,7 +53,7 @@
new_content = f"{header}\n{'-' * len(header)}\n"
if git_log:
for x in git_log:
new_content += f"- {x}\n"
new_content += f"- {x.capitalize()}\n"
else:
new_content += "- Minor improvements\n"
new_content += "\n"
Expand Down
2 changes: 1 addition & 1 deletion src/iminuit/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# - During development, add suffix .devN with N >= 0
# - For release candidates, add suffix .rcN with N >= 0
# - For beta releases, add suffix .betaN with N >= 0
version = "2.12.3"
version = "2.13.0"

# We list the corresponding ROOT version of the C++ Minuit2 library here
root_version = "v6-25-02-1013-ga4bb8f3342"

0 comments on commit 8e0407c

Please sign in to comment.