Skip to content

Commit 81e80d0

Browse files
committed
v0.19.0 release
1 parent c3aed1e commit 81e80d0

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
0.19.0
2+
3+
auth: parse headers using pyparsing instead of regexp
4+
https://github.com/httplib2/httplib2/pull/182
5+
6+
auth: WSSE token needs to be string not bytes
7+
https://github.com/httplib2/httplib2/pull/179
8+
19
0.18.1
210

311
explicit build-backend workaround for pip build isolation bug

python2/httplib2/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"Alex Yu",
2020
]
2121
__license__ = "MIT"
22-
__version__ = "0.18.1"
22+
__version__ = "0.19.0"
2323

2424
import base64
2525
import calendar

python3/httplib2/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"Alex Yu",
1616
]
1717
__license__ = "MIT"
18-
__version__ = "0.18.1"
18+
__version__ = "0.19.0"
1919

2020
import base64
2121
import calendar

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import sys
55

66
pkgdir = {"": "python%s" % sys.version_info[0]}
7-
VERSION = "0.18.1"
7+
VERSION = "0.19.0"
88

99

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

0 commit comments

Comments
 (0)