From bad36629e4518efe30ba37a4683014d0b6b770e9 Mon Sep 17 00:00:00 2001 From: Jan Gosmann Date: Thu, 10 Oct 2024 08:35:38 +0200 Subject: [PATCH] Prepare v1.1.1 release --- CHANGELOG.rst | 11 +++++++++++ dmarc_metrics_exporter/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0858176..8ee8d78 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,6 +6,17 @@ 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 `_. +[1.1.1] - 2024-10-10 +-------------------- + +Fixed +^^^^^ + +* Fix misspelled metric name (use ``dmarc_invalid_reports_total`` instead of + ``dmaric_invalid_reports_total``). + (`#50 `_) + + [1.1.0] - 2024-08-20 -------------------- diff --git a/dmarc_metrics_exporter/__init__.py b/dmarc_metrics_exporter/__init__.py index 6849410..a82b376 100644 --- a/dmarc_metrics_exporter/__init__.py +++ b/dmarc_metrics_exporter/__init__.py @@ -1 +1 @@ -__version__ = "1.1.0" +__version__ = "1.1.1" diff --git a/pyproject.toml b/pyproject.toml index 14cd0b3..7cedbb7 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ license = "MIT" name = "dmarc-metrics-exporter" readme = "README.rst" repository = "https://github.com/jgosmann/dmarc-metrics-exporter/" -version = "1.1.0" # Update also in __init__.py! +version = "1.1.1" # Update also in __init__.py! [tool.poetry.scripts] dmarc-metrics-exporter = "dmarc_metrics_exporter.__main__:run"