diff --git a/pyproject.toml b/pyproject.toml index c81b757..6fb086e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dmarc-report" -version = "1.0.1" +version = "1.0.2" description = "Displays a nicely formatted report in your terminal from a DMARC XML report." readme = "README.md" authors = [{ name = "Stuart Maxwell", email = "stuart@amanzi.nz" }] @@ -67,7 +67,7 @@ convention = "google" # Accepts: "google", "numpy", or "pep257". python_files = "test_*.py" [tool.bumpver] -current_version = "1.0.1" +current_version = "1.0.2" version_pattern = "MAJOR.MINOR.PATCH" commit_message = "👍 bump version {old_version} -> {new_version}" commit = true diff --git a/src/dmarc_report/__init__.py b/src/dmarc_report/__init__.py index 440c8bb..40fa32b 100644 --- a/src/dmarc_report/__init__.py +++ b/src/dmarc_report/__init__.py @@ -1,3 +1,3 @@ """DMARC report parser and display tool.""" -__version__ = "1.0.1" +__version__ = "1.0.2"