Skip to content

Commit

Permalink
v0.14.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
temoto committed Sep 26, 2019
1 parent cfba120 commit 7615587
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
@@ -1,3 +1,8 @@
0.14.0

Python3: PROXY_TYPE_SOCKS5 with str user/pass raised TypeError
https://github.com/httplib2/httplib2/pull/145

0.13.1

Python3: Use no_proxy
Expand Down
2 changes: 1 addition & 1 deletion python2/httplib2/__init__.py
Expand Up @@ -19,7 +19,7 @@
"Alex Yu",
]
__license__ = "MIT"
__version__ = '0.13.1'
__version__ = '0.14.0'

import base64
import calendar
Expand Down
2 changes: 1 addition & 1 deletion python3/httplib2/__init__.py
Expand Up @@ -15,7 +15,7 @@
"Alex Yu",
]
__license__ = "MIT"
__version__ = '0.13.1'
__version__ = '0.14.0'

import base64
import calendar
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -4,7 +4,7 @@
import sys

pkgdir = {"": "python%s" % sys.version_info[0]}
VERSION = '0.13.1'
VERSION = '0.14.0'


# `python setup.py test` uses existing Python environment, no virtualenv, no pip.
Expand Down

0 comments on commit 7615587

Please sign in to comment.