Skip to content

Commit 9349700

Browse files
author
semantic-release
committed
chore: Release v2.0.10
Automatically generated by python-semantic-release.
1 parent 39fb940 commit 9349700

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33

44

5+
## v2.0.10 (2025-10-20)
6+
7+
### Patch
8+
* patch: Drop support for Python 3.9 ([`b9e5ffb`](https://github.com/sandialabs/reverse_argparse/commit/b9e5ffb3b3472a29b3585950a2de40863ce1f6d2))
9+
10+
Undo the last of 8d15f4ab124bb067f5422538050dd7c70b414aa8.
11+
12+
* Use a match case statement in place of an if block.
13+
* Replace Union types with X | Y syntax.
14+
15+
Also introduce support for Python 3.14.
16+
17+
Closes #16.
18+
519
## v2.0.9 (2025-07-16)
620

721
### Bug fixes

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
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.9"
20+
version = "2.0.10"
2121
release = version
2222

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
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.9"
8+
version = "2.0.10"
99
license = "LICENSE.md"
1010
readme = "README.md"
1111
keywords = ["argparse", "argument", "parse", "parsing", "command line"]

reverse_argparse/__init__.py

Lines changed: 1 addition & 1 deletion
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.9"
17+
__version__ = "2.0.10"

0 commit comments

Comments
 (0)