From 19a5c175f86a123d9331c2e966d44da18ab74a9b Mon Sep 17 00:00:00 2001 From: Sean Whalen <44679+seanthegeek@users.noreply.github.com> Date: Tue, 20 Dec 2022 13:26:37 -0500 Subject: [PATCH] 4.5.0 - Detect non-trivial loops (PR [#88](https://github.com/domainaware/checkdmarc/pull/88)) - Raise a `SPFSyntaxError` exception when an IP address and IP version do not match (PR [#87](https://github.com/domainaware/checkdmarc/pull/87)) - Fix raising the `DMARCRecordNotFound` exception when a DMARC record does not exist (PR [#86](https://github.com/domainaware/checkdmarc/pull/86) closes issue [#72](https://github.com/domainaware/checkdmarc/issues/72)) - Add void lookup limit (PR [#85](https://github.com/domainaware/checkdmarc/pull/85)) - Add Support for User Defined DNS Resolver Object (PR [#83](https://github.com/domainaware/checkdmarc/pull/83)) --- CHANGELOG.md | 10 ++++++++++ checkdmarc.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 497d87d..b3a7b18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ Changelog ========= +4.5.0 +----- + +- Detect non-trivial loops (PR [#88](https://github.com/domainaware/checkdmarc/pull/88)) +- Raise a `SPFSyntaxError` exception when an IP address and IP version do not match (PR [#87](https://github.com/domainaware/checkdmarc/pull/87)) +- Fix raising the `DMARCRecordNotFound` exception when a DMARC record does not exist (PR [#86](https://github.com/domainaware/checkdmarc/pull/86) closes issue [#72](https://github.com/domainaware/checkdmarc/issues/72)) +- Add void lookup limit (PR [#85](https://github.com/domainaware/checkdmarc/pull/85)) +- Add Support for User Defined DNS Resolver Object (PR [#83](https://github.com/domainaware/checkdmarc/pull/83)) + + 4.4.4 ----- diff --git a/checkdmarc.py b/checkdmarc.py index be208eb..744838d 100644 --- a/checkdmarc.py +++ b/checkdmarc.py @@ -51,7 +51,7 @@ See the License for the specific language governing permissions and limitations under the License.""" -__version__ = "4.4.4" +__version__ = "4.5.0" DMARC_VERSION_REGEX_STRING = r"v=DMARC1;" BIMI_VERSION_REGEX_STRING = r"v=BIMI1;"