Skip to content

Commit af57a64

Browse files
author
semantic-release
committed
chore: Release v2.0.1
Automatically generated by python-semantic-release.
1 parent b69354f commit af57a64

File tree

4 files changed

+74
-3
lines changed

4 files changed

+74
-3
lines changed

CHANGELOG.md

+71
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,77 @@
22

33

44

5+
## v2.0.1 (2024-12-17)
6+
7+
### Chores
8+
* chore(deps): Bump the github-actions-dependencies group with 2 updates ([`dd049b9`](https://github.com/sandialabs/reverse_argparse/commit/dd049b9e2a9dafb7aca32e536e0852f78e3fc73b))
9+
10+
Bumps the github-actions-dependencies group with 2 updates: [github/codeql-action](https://github.com/github/codeql-action) and [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish).
11+
12+
13+
Updates `github/codeql-action` from 3.27.6 to 3.27.9
14+
- [Release notes](https://github.com/github/codeql-action/releases)
15+
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
16+
- [Commits](https://github.com/github/codeql-action/compare/aa578102511db1f4524ed59b8cc2bae4f6e88195...df409f7d9260372bd5f19e5b04e83cb3c43714ae)
17+
18+
Updates `pypa/gh-action-pypi-publish` from 1.12.2 to 1.12.3
19+
- [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases)
20+
- [Commits](https://github.com/pypa/gh-action-pypi-publish/compare/15c56dba361d8335944d31a2ecd17d700fc7bcbc...67339c736fd9354cd4f8cb0b744f2b82a74b5c70)
21+
22+
---
23+
updated-dependencies:
24+
- dependency-name: github/codeql-action
25+
dependency-type: direct:production
26+
update-type: version-update:semver-patch
27+
dependency-group: github-actions-dependencies
28+
- dependency-name: pypa/gh-action-pypi-publish
29+
dependency-type: direct:production
30+
update-type: version-update:semver-patch
31+
dependency-group: github-actions-dependencies
32+
...
33+
34+
Signed-off-by: dependabot[bot] <[email protected]>
35+
* chore(deps): Bump the github-actions-dependencies group with 3 updates ([`17b1247`](https://github.com/sandialabs/reverse_argparse/commit/17b12476bb73296b5c0ea6c68926f7f7e71fd5c3))
36+
37+
Bumps the github-actions-dependencies group with 3 updates: [github/codeql-action](https://github.com/github/codeql-action), [codecov/codecov-action](https://github.com/codecov/codecov-action) and [python-semantic-release/python-semantic-release](https://github.com/python-semantic-release/python-semantic-release).
38+
39+
40+
Updates `github/codeql-action` from 3.27.5 to 3.27.6
41+
- [Release notes](https://github.com/github/codeql-action/releases)
42+
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
43+
- [Commits](https://github.com/github/codeql-action/compare/f09c1c0a94de965c15400f5634aa42fac8fb8f88...aa578102511db1f4524ed59b8cc2bae4f6e88195)
44+
45+
Updates `codecov/codecov-action` from 5.0.7 to 5.1.1
46+
- [Release notes](https://github.com/codecov/codecov-action/releases)
47+
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
48+
- [Commits](https://github.com/codecov/codecov-action/compare/015f24e6818733317a2da2edd6290ab26238649a...7f8b4b4bde536c465e797be725718b88c5d95e0e)
49+
50+
Updates `python-semantic-release/python-semantic-release` from 9.15.0 to 9.15.1
51+
- [Release notes](https://github.com/python-semantic-release/python-semantic-release/releases)
52+
- [Changelog](https://github.com/python-semantic-release/python-semantic-release/blob/master/CHANGELOG.md)
53+
- [Commits](https://github.com/python-semantic-release/python-semantic-release/compare/2773f6d901a5cefed959c6ccda302ef41fed67dc...a3233795eb26b6d5167192ffd4550947d764a9b0)
54+
55+
---
56+
updated-dependencies:
57+
- dependency-name: github/codeql-action
58+
dependency-type: direct:production
59+
update-type: version-update:semver-patch
60+
dependency-group: github-actions-dependencies
61+
- dependency-name: codecov/codecov-action
62+
dependency-type: direct:production
63+
update-type: version-update:semver-minor
64+
dependency-group: github-actions-dependencies
65+
- dependency-name: python-semantic-release/python-semantic-release
66+
dependency-type: direct:production
67+
update-type: version-update:semver-patch
68+
dependency-group: github-actions-dependencies
69+
...
70+
71+
Signed-off-by: dependabot[bot] <[email protected]>
72+
73+
### Patch
74+
* patch: Support Python 3.13 ([`453fd05`](https://github.com/sandialabs/reverse_argparse/commit/453fd05415f7580240996e8dcbfbf29842986822))
75+
576
## v2.0.0 (2024-12-03)
677

778
### Chores

doc/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"2023, National Technology & Engineering Solutions of Sandia, LLC (NTESS)"
1818
)
1919
author = "Jason M. Gates"
20-
version = "2.0.0"
20+
version = "2.0.1"
2121
release = version
2222

2323
# -- General configuration ----------------------------------------------------

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"
55

66
[tool.poetry]
77
name = "reverse_argparse"
8-
version = "2.0.0"
8+
version = "2.0.1"
99
license = "LICENSE.md"
1010
readme = "README.md"
1111
keywords = ["argparse", "argument", "parse", "parsing", "command line"]

reverse_argparse/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
from .reverse_argparse import ReverseArgumentParser, quote_arg_if_necessary
1515

1616
__all__ = ["ReverseArgumentParser", "quote_arg_if_necessary"]
17-
__version__ = "2.0.0"
17+
__version__ = "2.0.1"

0 commit comments

Comments
 (0)