From c60b72e2d0c505b016741c419894e1feaeb96d9d Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 18 Dec 2012 04:50:41 -0500 Subject: [PATCH] v1.0.3 --- HISTORY.rst | 6 ++++++ requests/__init__.py | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 6d867e1..7586ed0 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 8fbe3eb..0888658 100644 --- a/requests/__init__.py +++ b/requests/__init__.py @@ -42,8 +42,8 @@ is at . """ __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' -- 2.7.4