From 35f72f4ce96e86963ee7797dfe84775ae3129ff1 Mon Sep 17 00:00:00 2001 From: Jan Gosmann Date: Fri, 30 Jun 2023 19:24:55 +0200 Subject: [PATCH] Prepare v0.9.2 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 bec0d97..985e6fa 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 `_. +[0.9.2] - 2023-06-30 +-------------------- + +Fixed +^^^^^ + +* Fix issue with Microsoft Exchange not handling string length being split + across multiple packages. + (`#36 `_) + + [0.9.1] - 2023-02-09 -------------------- diff --git a/dmarc_metrics_exporter/__init__.py b/dmarc_metrics_exporter/__init__.py index d69d16e..a2fecb4 100644 --- a/dmarc_metrics_exporter/__init__.py +++ b/dmarc_metrics_exporter/__init__.py @@ -1 +1 @@ -__version__ = "0.9.1" +__version__ = "0.9.2" diff --git a/pyproject.toml b/pyproject.toml index fc65073..1883d42 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ license = "MIT" name = "dmarc-metrics-exporter" readme = "README.rst" repository = "https://github.com/jgosmann/dmarc-metrics-exporter/" -version = "0.9.1" # Update also in __init__.py! +version = "0.9.2" # Update also in __init__.py! [tool.poetry.scripts] dmarc-metrics-exporter = "dmarc_metrics_exporter.__main__:run"