From f789a5badd8b829b0335e46723b38954666263e9 Mon Sep 17 00:00:00 2001 From: semantic-release Date: Tue, 17 Dec 2024 17:49:02 +0000 Subject: [PATCH] chore: Release v2.0.2 Automatically generated by python-semantic-release. --- CHANGELOG.md | 14 ++++++++++++++ doc/source/conf.py | 2 +- pyproject.toml | 2 +- reverse_argparse/__init__.py | 2 +- 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fcaddaf..296a80a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ +## v2.0.2 (2024-12-17) + +### Bug fixes +* fix: Switch import location ([`7948fc2`](https://github.com/sandialabs/reverse_argparse/commit/7948fc2b0e1e9cdb6444be1d931e7f5a92ac26aa)) + + In Python 3.9, `typing.Sequence` was deprecated in favor of + `collections.abc.Sequence` (see PEP 585). + +### Continuous integration +* ci: pre-commit auto-update ([`8f5df54`](https://github.com/sandialabs/reverse_argparse/commit/8f5df549cb5dcce2917a9f22b47520954882e78f)) + + updates: + - [github.com/astral-sh/ruff-pre-commit: v0.7.4 → v0.8.3](https://github.com/astral-sh/ruff-pre-commit/compare/v0.7.4...v0.8.3) + ## v2.0.1 (2024-12-17) ### Chores diff --git a/doc/source/conf.py b/doc/source/conf.py index bb7c403..25cd016 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -17,7 +17,7 @@ "2023, National Technology & Engineering Solutions of Sandia, LLC (NTESS)" ) author = "Jason M. Gates" -version = "2.0.1" +version = "2.0.2" release = version # -- General configuration ---------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index b9d5169..8799199 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "reverse_argparse" -version = "2.0.1" +version = "2.0.2" license = "LICENSE.md" readme = "README.md" keywords = ["argparse", "argument", "parse", "parsing", "command line"] diff --git a/reverse_argparse/__init__.py b/reverse_argparse/__init__.py index 2556200..8cec296 100644 --- a/reverse_argparse/__init__.py +++ b/reverse_argparse/__init__.py @@ -14,4 +14,4 @@ from .reverse_argparse import ReverseArgumentParser, quote_arg_if_necessary __all__ = ["ReverseArgumentParser", "quote_arg_if_necessary"] -__version__ = "2.0.1" +__version__ = "2.0.2"