Skip to content

Commit

Permalink
v0.17.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
temoto committed Jan 24, 2020
1 parent ea0e1f1 commit 6746342
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
@@ -1,3 +1,10 @@
0.17.0

feature: Http().redirect_codes set, works after follow(_all)_redirects check
This allows one line workaround for old gcloud library that uses 308
response without redirect semantics.
https://github.com/httplib2/httplib2/issues/156

0.16.0

IMPORTANT cache invalidation change, fix 307 keep method, add 308 Redirects
Expand Down
2 changes: 1 addition & 1 deletion python2/httplib2/__init__.py
Expand Up @@ -19,7 +19,7 @@
"Alex Yu",
]
__license__ = "MIT"
__version__ = '0.16.0'
__version__ = '0.17.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.16.0'
__version__ = '0.17.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.16.0'
VERSION = '0.17.0'


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

0 comments on commit 6746342

Please sign in to comment.