From a91406d630ea7cbbdef29af069207df4a72da77d Mon Sep 17 00:00:00 2001 From: Joe Gregorio Date: Tue, 11 Sep 2012 13:20:44 -0400 Subject: Version 0.7.6 --- CHANGELOG | 3 +++ python2/httplib2/__init__.py | 2 +- python3/httplib2/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index a2d9cbd..0df4afd 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +0.7.6 + Fixes for App Engine 2.7. + 0.7.5 Keys are lowercase in a Response object, regardless of how Response object is constructed. Add control so that Authorization: headers aren't forwarded on a 3xx response by default. diff --git a/python2/httplib2/__init__.py b/python2/httplib2/__init__.py index 1ae71c9..fb74de2 100644 --- a/python2/httplib2/__init__.py +++ b/python2/httplib2/__init__.py @@ -22,7 +22,7 @@ __contributors__ = ["Thomas Broyer (t.broyer@ltgt.net)", "Sam Ruby", "Louis Nyffenegger"] __license__ = "MIT" -__version__ = "0.7.5" +__version__ = "0.7.6" import re import sys diff --git a/python3/httplib2/__init__.py b/python3/httplib2/__init__.py index 0b2318b..b42844f 100644 --- a/python3/httplib2/__init__.py +++ b/python3/httplib2/__init__.py @@ -24,7 +24,7 @@ __contributors__ = ["Thomas Broyer (t.broyer@ltgt.net)", "Louis Nyffenegger", "Mark Pilgrim"] __license__ = "MIT" -__version__ = "0.7.5" +__version__ = "0.7.6" import re import sys diff --git a/setup.py b/setup.py index 925c929..b2e3ef4 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: import sys pkgdir = {'': 'python%s' % sys.version_info[0]} -VERSION = '0.7.5' +VERSION = '0.7.6' setup(name='httplib2', version=VERSION, -- cgit v1.2.1