diff --git a/HISTORY.rst b/HISTORY.rst index fe3a3c3..e219e88 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,3 +1,12 @@ +0.15.0 (2021-02-27) +------------------- + +- Drop support for Python 3.4. (#48) +- Support more proxy keywords: HTTP, HTTPS, SOCKS4, SOCKS5. (#41) +- Absorb any exception from ``tld.get_tld()``, not just TldDomainNotFound. (#30) Thanks @santiavenda2. +- Reimplement ``dnsDomainIs(host, domain)`` as case-insensitive 'host ends with domain'. (#42, #57) + + 0.14.0 (2020-12-05) ------------------- diff --git a/pypac/__init__.py b/pypac/__init__.py index 0513809..c9d9733 100644 --- a/pypac/__init__.py +++ b/pypac/__init__.py @@ -20,7 +20,7 @@ from pypac.api import get_pac, collect_pac_urls, download_pac, PACSession, pac_context_for_url -__version__ = "0.14.0" +__version__ = "0.15.0" __all__ = ["get_pac", "collect_pac_urls", "download_pac", "PACSession", "pac_context_for_url"] diff --git a/setup.cfg b/setup.cfg index b75bdf1..58946b0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ [metadata] name = PyPAC # attr: pypac.__version__ via AST added in setuptools 46.4+, which doesn't support PY27. -version = 0.14.0 +version = 0.15.0 author = Carson Lam author_email = 46059+carsonyl@users.noreply.github.com description = Proxy auto-config and auto-discovery for Python.