Skip to content

Commit

Permalink
v0.18.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
temoto committed May 20, 2020
1 parent 9fef207 commit 8373177
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
0.18.0

IMPORTANT security vulnerability CWE-93 CRLF injection
Force %xx quote of space, CR, LF characters in uri.
Special thanks to Recar https://github.com/Ciyfly for discrete notification.
https://cwe.mitre.org/data/definitions/93.html

0.17.4

Ship test suite in source dist
Expand Down
2 changes: 1 addition & 1 deletion python2/httplib2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"Alex Yu",
]
__license__ = "MIT"
__version__ = '0.17.4'
__version__ = "0.18.0"

import base64
import calendar
Expand Down
2 changes: 1 addition & 1 deletion python3/httplib2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"Alex Yu",
]
__license__ = "MIT"
__version__ = '0.17.4'
__version__ = "0.18.0"

import base64
import calendar
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys

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


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

0 comments on commit 8373177

Please sign in to comment.