aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Shepelev <temotor@gmail.com>2021-03-30 19:03:13 +0300
committerSergey Shepelev <temotor@gmail.com>2021-03-30 19:03:13 +0300
commit58e6f66804665884393ebbe83968c0c2c16c9f70 (patch)
treeae728a911139f451413a86bae0fcc898dff0432a
parent77464f88ad6ed5a56ad4c395f1811331cad3cfcd (diff)
downloadhttplib2-58e6f66804665884393ebbe83968c0c2c16c9f70.tar.gz
v0.19.1 release
-rw-r--r--CHANGELOG6
-rw-r--r--python2/httplib2/__init__.py2
-rw-r--r--python3/httplib2/__init__.py2
-rwxr-xr-xsetup.py2
4 files changed, 9 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 3e985a9..d144db8 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,9 @@
+0.19.1
+
+ auth header parsing performance optimizations; Thanks to Paul McGuire
+
+ Use mock from the standard library on Python>=3.3
+
0.19.0
auth: parse headers using pyparsing instead of regexp
diff --git a/python2/httplib2/__init__.py b/python2/httplib2/__init__.py
index 6a540ff..76eb352 100644
--- a/python2/httplib2/__init__.py
+++ b/python2/httplib2/__init__.py
@@ -19,7 +19,7 @@ __contributors__ = [
"Alex Yu",
]
__license__ = "MIT"
-__version__ = "0.19.0"
+__version__ = "0.19.1"
import base64
import calendar
diff --git a/python3/httplib2/__init__.py b/python3/httplib2/__init__.py
index 26d74a1..8b240db 100644
--- a/python3/httplib2/__init__.py
+++ b/python3/httplib2/__init__.py
@@ -15,7 +15,7 @@ __contributors__ = [
"Alex Yu",
]
__license__ = "MIT"
-__version__ = "0.19.0"
+__version__ = "0.19.1"
import base64
import calendar
diff --git a/setup.py b/setup.py
index 821bc2b..d6de1df 100755
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ import setuptools.command.test
import sys
pkgdir = {"": "python%s" % sys.version_info[0]}
-VERSION = "0.19.0"
+VERSION = "0.19.1"
# `python setup.py test` uses existing Python environment, no virtualenv, no pip.