diff options
| author | Kenneth Reitz <me@kennethreitz.com> | 2011-11-07 14:20:32 -0500 |
|---|---|---|
| committer | Kenneth Reitz <me@kennethreitz.com> | 2011-11-07 14:20:32 -0500 |
| commit | 8c90c610cd15f91ed0cd1738aa73f088496b6af9 (patch) | |
| tree | cdeb16eecff39ad7901b2c043e1e8b3ce00ae479 | |
| parent | 1a85e110b8c2084807bc3fffdca5fc03013afd80 (diff) | |
| download | python-requests-0.7.6.tar.gz | |
v0.7.6v0.7.6
Fixes #237
| -rw-r--r-- | HISTORY.rst | 5 | ||||
| -rw-r--r-- | requests/__init__.py | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/HISTORY.rst b/HISTORY.rst index 156b764c..36d47f7c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,11 @@ History ------- +0.7.6 (2011-11-07) +++++++++++++++++++ + +* Digest authentication bugfix (attach query data to path) + 0.7.5 (2011-11-04) ++++++++++++++++++ diff --git a/requests/__init__.py b/requests/__init__.py index 6699ac51..1140a523 100644 --- a/requests/__init__.py +++ b/requests/__init__.py @@ -15,8 +15,8 @@ requests """ __title__ = 'requests' -__version__ = '0.7.5' -__build__ = 0x000705 +__version__ = '0.7.6' +__build__ = 0x000706 __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2011 Kenneth Reitz' |
