From 569eeb9d599faa45d81c37ac6002c9cc38a2da69 Mon Sep 17 00:00:00 2001 From: Thierry de Pauw Date: Mon, 25 Dec 2023 12:53:26 +0100 Subject: [PATCH] Release version v0.30 --- CHANGELOG.md | 8 ++++++++ DMARCReporting/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 219a386..d731aba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.3.0 (25 December 2023) + +BREAKING CHANGE: Improved file handling causes the report to show the file DMARC RUA report path in the report ([#10](https://github.com/MozaicWorks/DMARCReporting/issues/10)). +Added support for Python 3.12 ([#20](https://github.com/MozaicWorks/DMARCReporting/issues/20)). +Improved the release process to read the version number from the Python module version ([#14](https://github.com/MozaicWorks/DMARCReporting/issues/14)). +Added support for GZip files with trailing garbage ([#18](https://github.com/MozaicWorks/DMARCReporting/issues/18)). +BREAKING CHANGE: Included the DMARC RUA Report date range in the report ([#12](https://github.com/MozaicWorks/DMARCReporting/issues/12)). + ## 0.2.1 (30 November 2023) Fixed the incorrect reporting due to XML tag ordering ([#19](https://github.com/MozaicWorks/DMARCReporting/issues/19) reported by [@yaiqsa](https://github.com/yaiqsa)). Instead of positional tag parsing we now rely on xpath to parse the DMARC RUA XML reports. diff --git a/DMARCReporting/__init__.py b/DMARCReporting/__init__.py index 8e9c7c0..2ab847d 100644 --- a/DMARCReporting/__init__.py +++ b/DMARCReporting/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.2.1" +__version__ = "0.3.0" import argparse from DMARCReporting.cli import CLI