diff options
| author | Kenneth Reitz <me@kennethreitz.com> | 2012-12-18 04:50:41 -0500 |
|---|---|---|
| committer | Kenneth Reitz <me@kennethreitz.com> | 2012-12-18 04:50:41 -0500 |
| commit | c60b72e2d0c505b016741c419894e1feaeb96d9d (patch) | |
| tree | 94e29595bfbbfae7a4bc7c6094269c3037a6b72e | |
| parent | b2d03ac9a246225a0f4228b1cd6ae442ffdb2bd2 (diff) | |
| download | python-requests-1.0.3.tar.gz | |
v1.0.3v1.0.3
| -rw-r--r-- | HISTORY.rst | 6 | ||||
| -rw-r--r-- | requests/__init__.py | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/HISTORY.rst b/HISTORY.rst index 6d867e14..7586ed0d 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ History ------- +1.0.3 (2012-12-18) +++++++++++++++++++ + +- Fix file upload encoding bug +- Fix cookie behavior + 1.0.2 (2012-12-17) ++++++++++++++++++ diff --git a/requests/__init__.py b/requests/__init__.py index 8fbe3eb1..0888658f 100644 --- a/requests/__init__.py +++ b/requests/__init__.py @@ -42,8 +42,8 @@ is at <http://python-requests.org>. """ __title__ = 'requests' -__version__ = '1.0.2' -__build__ = 0x01002 +__version__ = '1.0.3' +__build__ = 0x01003 __author__ = 'Kenneth Reitz' __license__ = 'Apache 2.0' __copyright__ = 'Copyright 2012 Kenneth Reitz' |
