8000 v0.18.1 release · httplib2/httplib2@9bf300c · GitHub
[go: up one dir, main page]

8000
Skip to content

Commit 9bf300c

Browse files
committed
v0.18.1 release
1 parent cb2940a commit 9bf300c

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
0.18.1
2+
3+
explicit build-backend workaround for pip build isolation bug
4+
"AttributeError: 'module' object has no attribute '__legacy__'" on pip install
5+
https://github.com/httplib2/httplib2/issues/169
6+
17
0.18.0
28

39
IMPORTANT security vulnerability CWE-93 CRLF injection

python2/httplib2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"Alex Yu",
2020
]
2121
__license__ = "MIT"
22-
__version__ = "0.18.0"
22+
__version__ = "0.18.1"
2323

2424
import base64
2525
import calendar

python3/httplib2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"Alex Yu",
1616
]
1717
__license__ = "MIT"
18-
__version__ = "0.18.0"
18+
__version__ = "0.18.1"
1919

2020
import base64
2121
import calendar

setup.py

Lines changed: 1 addition & 1 deletion
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.0"
7+
VERSION = "0.18.1"
88

99

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

0 commit comments

Comments
 (0)
0