From: Joshua Roesslein Date: Thu, 18 Mar 2010 23:02:25 +0000 (-0500) Subject: Increment version # and update changelog. X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=006d21cc5e16e4819771ad1be477898fc4fb0cb9;p=tweepy.git Increment version # and update changelog. Changelog file is no longer being maintained. Github compare views will replace it. --- diff --git a/CHANGELOG b/CHANGELOG index 7efd337..4e00f6f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,12 +1,13 @@ -All changes made to the library that might affect applications -during upgrade will be listed here. +This file will no longer be maintained. To get a listing of all changes between versions +instead use Github compare views. Their URL's work like this: + http://github.com/joshthecoder/tweepy/compare/prev...next + +prev and next can be a tag, branch, or a commit SHA1. +Example to view changes between versions 1.5 -> 1.6: + + http://github.com/joshthecoder/tweepy/compare/1.5...1.6 -1.5 -> 1.6 -=========================== -+ API methods now allow for kargs that are not listed in the - allowed_params list. This way Tweepy can support future parameters - twitter adds without having the patch the library. 1.4 -> 1.5 =========================== diff --git a/setup.py b/setup.py index c33e6f2..39041ac 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages setup(name="tweepy", - version="1.5", + version="1.6", description="Twitter library for python", license="MIT", author="Joshua Roesslein", diff --git a/tweepy/__init__.py b/tweepy/__init__.py index ae76b43..4cc0bb3 100644 --- a/tweepy/__init__.py +++ b/tweepy/__init__.py @@ -5,7 +5,7 @@ """ Tweepy Twitter API library """ -__version__ = '1.5' +__version__ = '1.6' __author__ = 'Joshua Roesslein' __license__ = 'MIT'