Bump version to 1.2 for next release.
authorJosh Roesslein <jroesslein@gmail.com>
Tue, 13 Oct 2009 20:15:33 +0000 (15:15 -0500)
committerJosh Roesslein <jroesslein@gmail.com>
Tue, 13 Oct 2009 20:15:33 +0000 (15:15 -0500)
CHANGES
setup.py
tweepy/__init__.py

diff --git a/CHANGES b/CHANGES
index 51b7b1fee448fcb73c3f5c51bc83ca1204734adc..6cf3e56a4841b518b6a4ab4352a46fa2bc1ba6ac 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,7 +1,7 @@
 All changes made to the library that might affect applications
 during upgrade will be listed here.
 
-1.1 -> Future release
+1.1 -> 1.2
 =====================
 + API
     + Added automatic request re-try feature
index d3d986e7a1752780ad0a7371ed69c7da33cee85c..580184cd90c0991c7bfdb8af9cacd4667b52d47b 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@
 from setuptools import setup, find_packages
 
 setup(name="tweepy",
-      version="1.1",
+      version="1.2",
       description="Twitter library for python",
       license="MIT",
       author="Joshua Roesslein",
index 3a8452228ec7bd41ab355b8e5f7da7ef242dda3e..9e5fd28ed5b4564a0589223631aca0e2ea29fc14 100644 (file)
@@ -5,7 +5,7 @@
 """
 Tweepy Twitter API library
 """
-__version__ = '1.1'
+__version__ = '1.2'
 
 from . models import Status, User, DirectMessage, Friendship, SavedSearch, SearchResult, models
 from . error import TweepError