From: Josh Roesslein Date: Tue, 13 Oct 2009 20:15:33 +0000 (-0500) Subject: Bump version to 1.2 for next release. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=01dc7345f5aa745f6eeac5d104be3ff2fff5d9bf;p=tweepy.git Bump version to 1.2 for next release. --- diff --git a/CHANGES b/CHANGES index 51b7b1f..6cf3e56 100644 --- 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 diff --git a/setup.py b/setup.py index d3d986e..580184c 100644 --- 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", diff --git a/tweepy/__init__.py b/tweepy/__init__.py index 3a84522..9e5fd28 100644 --- a/tweepy/__init__.py +++ b/tweepy/__init__.py @@ -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