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 . """ __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'