From faee7ea3ff28c3cbbeba08b6005f4c9bb8ec5fd8 Mon Sep 17 00:00:00 2001 From: Mike Helmick Date: Sat, 18 Jul 2015 10:32:30 -0400 Subject: [PATCH] Update AUTHORS.rst, Update HISTORY.rst, Update version [ci skip] --- AUTHORS.rst | 8 ++++++++ HISTORY.rst | 5 ++++- docs/conf.py | 4 ++-- setup.py | 2 +- twython/__init__.py | 2 +- 5 files changed, 16 insertions(+), 5 deletions(-) diff --git a/AUTHORS.rst b/AUTHORS.rst index 8a16050..739e11f 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -55,3 +55,11 @@ Patches and Suggestions - `Donne Martin `_, Fixed typos in `README.rst` - `Diego Allen `_, Add missing comma in documentation code snippet - `Ben McGinnes `_, Added mute API endpoints, a couple of examples, random bits. +- `Davis Silverman `_, Fixed endpoint HTTP method +- `David Beitey `_, Fixed documentation typos +- `7kfpun `_, Fixed documentation typos +- `Will Thompson `_, Fixed documentation typos +- `Andre Polykanine `_, Fixed documentation typos +- `Ben Bertka `_, Added dynamic filtering in streamer +- `Takahashi Shuuji `_, Fixed documentation typos +- `Jeremy Keen `_, Updated documentation example diff --git a/HISTORY.rst b/HISTORY.rst index a7c961d..05f1f71 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,9 +3,12 @@ History ------- -3.3.0 (2014-xx-xx) +3.3.0 (2015-18-07) ++++++++++++++++++ - Added support for muting users +- Fix typos in documentation +- Updated documentation examples +- Added dynamic filtering to streamer 3.2.0 (2014-10-30) ++++++++++++++++++ diff --git a/docs/conf.py b/docs/conf.py index a0f9ef4..480a355 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,9 +50,9 @@ copyright = u'2013, Ryan McGrath' # built documents. # # The short X.Y version. -version = '3.2.0' +version = '3.3.0' # The full version, including alpha/beta/rc tags. -release = '3.2.0' +release = '3.3.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index e203cc9..6d05baf 100755 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ except ImportError: from distutils.core import setup __author__ = 'Ryan McGrath ' -__version__ = '3.2.0' +__version__ = '3.3.0' packages = [ 'twython', diff --git a/twython/__init__.py b/twython/__init__.py index a79667d..3525f3c 100644 --- a/twython/__init__.py +++ b/twython/__init__.py @@ -19,7 +19,7 @@ Questions, comments? ryan@venodesigns.net """ __author__ = 'Ryan McGrath ' -__version__ = '3.2.0' +__version__ = '3.3.0' from .api import Twython from .streaming import TwythonStreamer