Skip to content

Commit 6a6d6f2

Browse files
author
github-actions
committed
chore: Release v1.0.2
Automatically generated by python-semantic-release.
1 parent af1d119 commit 6a6d6f2

File tree

5 files changed

+41
-3
lines changed

5 files changed

+41
-3
lines changed

CHANGELOG.md

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

44

55

6+
## v1.0.2 (2023-07-24)
7+
8+
### Continuous Integration
9+
* ci: Remove `-vv` for `semantic-release` ([`d83ae5d`](https://github.com/sandialabs/reverse_argparse/commit/d83ae5d1063a43de2822ba513b574745eed5a2e9))
10+
11+
### Fix
12+
* fix: Release notes template ([`1ac839a`](https://github.com/sandialabs/reverse_argparse/commit/1ac839a5bf1a252830dd9bf9267bd049031b7f9b))
13+
* fix: Semantic release configuration ([`0325dc0`](https://github.com/sandialabs/reverse_argparse/commit/0325dc0cd5dacee541f495652857fe43c9e1a3fe))
14+
15+
* Add `__init__.py` to the files modified.
16+
* Fix the `__version__` in that file.
17+
* Remove trailing space in CHANGELOG template.
18+
* Add build command.
19+
* Make release commit match conventional standard.
20+
* Add release notes template.
21+
* Publish releases to PyPI and GitHub Releases.
622
## v1.0.1 (2023-07-20)
723

824
### Continuous Integration
@@ -18,6 +34,11 @@
1834

1935
### Fix
2036
* fix: Include version in __init__.py ([`b7b369e`](https://github.com/sandialabs/reverse_argparse/commit/b7b369ec7ad3e8d58fbe0dd39b4acf2bc17bd568))
37+
38+
### Unknown
39+
* 1.0.1 ([`92bdc1a`](https://github.com/sandialabs/reverse_argparse/commit/92bdc1ade70d4b808f3be5a80e20ed6cb65517aa))
40+
41+
Automatically generated by python-semantic-release.
2142
## v1.0.0 (2023-07-18)
2243

2344
### Breaking

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 = "1.0.1"
20+
version = "1.0.2"
2121
release = version
2222

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ line_length = 79
2222

2323
[tool.poetry]
2424
name = "reverse_argparse"
25-
version = "1.0.1"
25+
version = "1.0.2"
2626
license = "LICENSE.md"
2727
readme = "README.md"
2828
keywords = ["argparse", "argument", "parse", "parsing", "command line"]

release_notes.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
# v1.0.2 (2023-07-24)
3+
4+
## Continuous Integration
5+
* ci: Remove `-vv` for `semantic-release` ([`d83ae5d`](https://github.com/sandialabs/reverse_argparse/commit/d83ae5d1063a43de2822ba513b574745eed5a2e9))
6+
7+
## Fix
8+
* fix: Release notes template ([`1ac839a`](https://github.com/sandialabs/reverse_argparse/commit/1ac839a5bf1a252830dd9bf9267bd049031b7f9b))
9+
* fix: Semantic release configuration ([`0325dc0`](https://github.com/sandialabs/reverse_argparse/commit/0325dc0cd5dacee541f495652857fe43c9e1a3fe))
10+
11+
* Add `__init__.py` to the files modified.
12+
* Fix the `__version__` in that file.
13+
* Remove trailing space in CHANGELOG template.
14+
* Add build command.
15+
* Make release commit match conventional standard.
16+
* Add release notes template.
17+
* Publish releases to PyPI and GitHub Releases.

reverse_argparse/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
from .reverse_argparse import ReverseArgumentParser, quote_arg_if_necessary
88

99
__all__ = ["ReverseArgumentParser", "quote_arg_if_necessary"]
10-
__version__ = "1.0.1"
10+
__version__ = "1.0.2"

0 commit comments

Comments
 (0)