diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e0844547..7bd557af5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog ## master - CURRENT + +## 3.17.0 - 06/11/2023 ### Added * New method to determine the actual zone name for a given FQDN. Historically it was an extraction of the second-level domain given well-known TLDs (eg., `domain.net` for `www.domain.net`) using diff --git a/pyproject.toml b/pyproject.toml index 9ce659865..6cc7791e0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "dns-lexicon" -version = "3.16.1" +version = "3.17.0" description = "Manipulate DNS records on various DNS providers in a standardized/agnostic way" license = "MIT" keywords = [ diff --git a/src/lexicon/client.py b/src/lexicon/client.py index 495b50f43..3ba17b13f 100644 --- a/src/lexicon/client.py +++ b/src/lexicon/client.py @@ -10,7 +10,6 @@ from typing import Any, Type import dns.resolver - import tldextract from lexicon import config as helper_config