Skip to content

Commit

Permalink
0.9.1 Release changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcgregorio committed Apr 11, 2015
1 parent 1af76a6 commit f9f7972
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
0.9.1

Fixes in this release:

https://github.com/jcgregorio/httplib2/pull/296

There was a problem with headers when a binary string is passed (like
b'Authorization').

https://github.com/jcgregorio/httplib2/pull/276

Default to doing DNS resolution through a proxy server if present.

0.9
Heartbleed

Expand Down
4 changes: 2 additions & 2 deletions python2/httplib2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"Sam Ruby",
"Louis Nyffenegger"]
__license__ = "MIT"
__version__ = "0.9"
__version__ = "0.9.1"

import re
import sys
Expand Down Expand Up @@ -1496,7 +1496,7 @@ def request(self, uri, method="GET", body=None, headers=None, redirections=DEFAU
info = email.Message.Message()
cached_value = None
if self.cache:
cachekey = defrag_uri
cachekey = defrag_uri.encode('utf-8')
cached_value = self.cache.get(cachekey)
if cached_value:
# info = email.message_from_string(cached_value)
Expand Down
2 changes: 1 addition & 1 deletion python3/httplib2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"Louis Nyffenegger",
"Mark Pilgrim"]
__license__ = "MIT"
__version__ = "0.9"
__version__ = "0.9.1"

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

pkgdir = {'': 'python%s' % sys.version_info[0]}
VERSION = '0.9'
VERSION = '0.9.1'

setup(name='httplib2',
version=VERSION,
Expand Down
7 changes: 5 additions & 2 deletions test/.htaccess
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
AddHandler cgi-script .asis
Options +ExecCGI
Options +ExecCGI +Indexes
ExpiresActive On
ExpiresDefault "access plus 2 hours"
# removed by cornerhost: SecFilterEngine Off
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST off
</IfModule>

0 comments on commit f9f7972

Please sign in to comment.