diff --git a/docs/changelog.md b/docs/changelog.md index 9729b02..e8876d4 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,11 @@ # Changelog +## v0.2.3 + +### Fix bugs + +- Fixed missing dependecies resulting error `dns.query.NoDOH: Neither httpx nor requests is available.` + ## v0.2.2 ### Improvements diff --git a/requests_doh/__init__.py b/requests_doh/__init__.py index c086407..070f968 100644 --- a/requests_doh/__init__.py +++ b/requests_doh/__init__.py @@ -2,7 +2,7 @@ DNS over HTTPS resolver for python requests """ -__version__ = "0.2.2" +__version__ = "0.2.3" __description__ = "DNS over HTTPS resolver for python requests" __author__ = "Rahman Yusuf" __author_email__ = "danipart4@gmail.com"