Skip to content

Commit 27cb67b

Browse files
author
semantic-release
committed
chore: Release v2.0.8
Automatically generated by python-semantic-release.
1 parent 500309b commit 27cb67b

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

CHANGELOG.md

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

33

44

5+
## v2.0.8 (2025-07-16)
6+
7+
### Bug fixes
8+
* fix: Set sufficient permissions for publish job ([`4004ef2`](https://github.com/sandialabs/reverse_argparse/commit/4004ef2a9942faea962e0433356970408abbb27b))
9+
10+
When running the upload to PyPI action, we ran into:
11+
12+
Error: Trusted publishing exchange failure:
13+
OpenID Connect token retrieval failed: GitHub: missing or
14+
insufficient OIDC token permissions, the
15+
ACTIONS_ID_TOKEN_REQUEST_TOKEN environment variable was unset
16+
17+
This generally indicates a workflow configuration error, such as
18+
insufficient permissions. Make sure that your workflow has
19+
`id-token: write` configured at the job level, e.g.:
20+
21+
```yaml
22+
permissions:
23+
id-token: write
24+
```
25+
526
## v2.0.7 (2025-07-16)
627
728
### Chores

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

0 commit comments

Comments
 (0)