Skip to content

Commit

Permalink
v0.15.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
carsonyl committed Feb 28, 2021
1 parent 2ee4438 commit 1cf53a0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -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)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion pypac/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -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 = [email protected]
description = Proxy auto-config and auto-discovery for Python.
Expand Down

0 comments on commit 1cf53a0

Please sign in to comment.