Skip to content

Commit b5c4017

Browse files
author
semantic-release
committed
chore: Release v1.0.8
Automatically generated by python-semantic-release.
1 parent 5a98ffc commit b5c4017

File tree

4 files changed

+43
-3
lines changed

4 files changed

+43
-3
lines changed

CHANGELOG.md

+40
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,46 @@
22

33

44

5+
## v1.0.8 (2024-05-13)
6+
7+
### Chore
8+
* chore: Remove commitizen configuration ([`73ceec1`](https://github.com/sandialabs/reverse_argparse/commit/73ceec1bdb5385744c29cef4eb85385603839ee7))
9+
* chore: Remove commitizen pre-commit hook ([`18c274f`](https://github.com/sandialabs/reverse_argparse/commit/18c274f5b42764b8bca3527bd49841ae7bc920da))
10+
11+
In order to enable a faster development workflow, remove the commitizen
12+
pre-commit hook to allow commits messages that don't adhere to the
13+
Conventional Commits specification. Commit messages are still checked
14+
in the Continuous Integration workflow, though, so a branch will need to
15+
be clean before merging.
16+
17+
### Continuous Integration
18+
* ci: pre-commit auto-update ([`31ce94a`](https://github.com/sandialabs/reverse_argparse/commit/31ce94a576e39bf6cad6cdace70030d3af4a7da6))
19+
20+
updates:
21+
- [github.com/astral-sh/ruff-pre-commit: v0.4.2 → v0.4.3](https://github.com/astral-sh/ruff-pre-commit/compare/v0.4.2...v0.4.3)
22+
* ci: pre-commit auto-update ([`7438097`](https://github.com/sandialabs/reverse_argparse/commit/74380974d006c6f592955282fd51e75f5db3f4c9))
23+
24+
updates:
25+
- [github.com/astral-sh/ruff-pre-commit: v0.4.1 → v0.4.2](https://github.com/astral-sh/ruff-pre-commit/compare/v0.4.1...v0.4.2)
26+
- [github.com/pre-commit/mirrors-mypy: v1.9.0 → v1.10.0](https://github.com/pre-commit/mirrors-mypy/compare/v1.9.0...v1.10.0)
27+
28+
### Documentation
29+
* docs: Fix license/copyright text in file ([`1d496c1`](https://github.com/sandialabs/reverse_argparse/commit/1d496c1b20da8ee373f41dd08863db222a15876c))
30+
31+
Should have been included in b3553415da40949f9ce496ca1363cb69424da791,
32+
but was overlooked.
33+
* docs: Reword Conventional Commits guidelines ([`6659b11`](https://github.com/sandialabs/reverse_argparse/commit/6659b11ea4d855ec48667c5d0fc904ca9f027dbe))
34+
* docs: Add code lines badge ([`9e4953d`](https://github.com/sandialabs/reverse_argparse/commit/9e4953d7fd43d2f325bfdc66cd6c0c71f5fc454e))
35+
36+
### Patch
37+
* patch: Indicate that the package is typed ([`bd89c55`](https://github.com/sandialabs/reverse_argparse/commit/bd89c55ded9b8d7982ff52b46155e4427ddf629e))
38+
39+
According to PEP 561, we need to add this file to static type checkers
40+
can infer the types from the package.
41+
42+
### Test
43+
* test: Ignore assert warnings in test files ([`01f97d0`](https://github.com/sandialabs/reverse_argparse/commit/01f97d037707378cf2fd7c86390c635dfbd5387b))
44+
545
## v1.0.7 (2024-04-22)
646

747
### Chore

doc/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"of Sandia, LLC (NTESS)"
1919
)
2020
author = "Jason M. Gates"
21-
version = "1.0.7"
21+
version = "1.0.8"
2222
release = version
2323

2424
# -- 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 = "1.0.7"
8+
version = "1.0.8"
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__ = "1.0.7"
17+
__version__ = "1.0.8"

0 commit comments

Comments
 (0)