From 54089971e41d0c2e31870addbaac943a9e6abfc7 Mon Sep 17 00:00:00 2001 From: Jan Gosmann Date: Sun, 7 Jan 2024 12:45:25 +0100 Subject: [PATCH] Prepare v0.10.1 with missing classifier added --- CHANGELOG.rst | 11 ++++++++++- dmarc_metrics_exporter/__init__.py | 2 +- pyproject.toml | 3 ++- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d4c1968..61c2c56 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,7 +6,16 @@ All notable changes to this project will be documented in this file. The format is based on `Keep a Changelog `_, and this project adheres to `Semantic Versioning `_. -[0.10.0] - unreleased +[0.10.1] - 2024-01-07 +--------------------- + +Fixed +^^^^^ + +* Add missing Python 3.12 classifier to package. + + +[0.10.0] - 2024-01-07 --------------------- Added diff --git a/dmarc_metrics_exporter/__init__.py b/dmarc_metrics_exporter/__init__.py index 61fb31c..1f4c4d4 100644 --- a/dmarc_metrics_exporter/__init__.py +++ b/dmarc_metrics_exporter/__init__.py @@ -1 +1 @@ -__version__ = "0.10.0" +__version__ = "0.10.1" diff --git a/pyproject.toml b/pyproject.toml index 24ae8a6..e12a184 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,6 +10,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Communications :: Email", "Topic :: System :: Monitoring", ] @@ -19,7 +20,7 @@ license = "MIT" name = "dmarc-metrics-exporter" readme = "README.rst" repository = "https://github.com/jgosmann/dmarc-metrics-exporter/" -version = "0.10.0" # Update also in __init__.py! +version = "0.10.1" # Update also in __init__.py! [tool.poetry.scripts] dmarc-metrics-exporter = "dmarc_metrics_exporter.__main__:run"