Skip to content

Commit 6eb6263

Browse files
author
semantic-release
committed
chore: Release v2.0.9
Automatically generated by python-semantic-release.
1 parent 50eb83f commit 6eb6263

File tree

4 files changed

+22
-3
lines changed

4 files changed

+22
-3
lines changed

CHANGELOG.md

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

33

44

5+
## v2.0.9 (2025-07-16)
6+
7+
### Bug fixes
8+
* fix: Rework release publishing ([`9c718b6`](https://github.com/sandialabs/reverse_argparse/commit/9c718b6c38b01266d2ecd55521265dc5ab1f2cf9))
9+
10+
The PyPI upload failed with:
11+
12+
Checking dist/reverse_argparse-2.0.8-py3-none-any.whl: PASSED
13+
Checking dist/multiple.intoto.jsonl: ERROR InvalidDistribution:
14+
Unknown distribution format:
15+
'multiple.intoto.jsonl'
16+
17+
I suppose the provenance can't be included in the `dist` directory for
18+
the PyPI upload, but it needs to be in there for python-semantic-release
19+
publish to GitHub Releases action. This commit reorders things, such
20+
that we publish to GitHub first, and save PyPI for last, and between the
21+
two we remove the provenance from the `dist` directory. Hopefully this
22+
works.
23+
524
## v2.0.8 (2025-07-16)
625

726
### 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.8"
20+
version = "2.0.9"
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.8"
8+
version = "2.0.9"
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.8"
17+
__version__ = "2.0.9"

0 commit comments

Comments
 (0)