From 77909f1d4999dcc988acdae043da406031dd5903 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 22 Oct 2011 18:07:00 -0400 Subject: [PATCH] v0.6.7 --- HISTORY.rst | 2 ++ requests/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 1c8398c3..a0666c23 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,8 @@ History 0.6.7 +++++ +* Sessions are now the primary interface. +* Deprecated InvalidMethodException. * PATCH fix. diff --git a/requests/__init__.py b/requests/__init__.py index 630ce6a5..2b25c9e2 100644 --- a/requests/__init__.py +++ b/requests/__init__.py @@ -15,8 +15,8 @@ requests """ __title__ = 'requests' -__version__ = '0.6.6' -__build__ = 0x000606 +__version__ = '0.6.7' +__build__ = 0x000607 __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2011 Kenneth Reitz'