Update AUTHORS.rst, Update HISTORY.rst, Update version

[ci skip]
This commit is contained in:
Mike Helmick 2015-07-18 10:32:30 -04:00
parent 34db3a58ad
commit faee7ea3ff
5 changed files with 16 additions and 5 deletions

View file

@ -55,3 +55,11 @@ Patches and Suggestions
- `Donne Martin <https://github.com/donnemartin>`_, Fixed typos in `README.rst` - `Donne Martin <https://github.com/donnemartin>`_, Fixed typos in `README.rst`
- `Diego Allen <https://github.com/dalleng>`_, Add missing comma in documentation code snippet - `Diego Allen <https://github.com/dalleng>`_, Add missing comma in documentation code snippet
- `Ben McGinnes <https://github.com/Hasimir>`_, Added mute API endpoints, a couple of examples, random bits. - `Ben McGinnes <https://github.com/Hasimir>`_, Added mute API endpoints, a couple of examples, random bits.
- `Davis Silverman <https://github.com/sinistersnare>`_, Fixed endpoint HTTP method
- `David Beitey <https://github.com/sinistersnare>`_, Fixed documentation typos
- `7kfpun <https://github.com/7kfpun>`_, Fixed documentation typos
- `Will Thompson <https://github.com/wjt>`_, Fixed documentation typos
- `Andre Polykanine <https://github.com/Oire>`_, Fixed documentation typos
- `Ben Bertka <https://github.com/bbertka>`_, Added dynamic filtering in streamer
- `Takahashi Shuuji <https://github.com/shuuji3>`_, Fixed documentation typos
- `Jeremy Keen <https://github.com/jkeenest>`_, Updated documentation example

View file

@ -3,9 +3,12 @@
History History
------- -------
3.3.0 (2014-xx-xx) 3.3.0 (2015-18-07)
++++++++++++++++++ ++++++++++++++++++
- Added support for muting users - Added support for muting users
- Fix typos in documentation
- Updated documentation examples
- Added dynamic filtering to streamer
3.2.0 (2014-10-30) 3.2.0 (2014-10-30)
++++++++++++++++++ ++++++++++++++++++

View file

@ -50,9 +50,9 @@ copyright = u'2013, Ryan McGrath'
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '3.2.0' version = '3.3.0'
# The full version, including alpha/beta/rc tags. # 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 # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View file

@ -9,7 +9,7 @@ except ImportError:
from distutils.core import setup from distutils.core import setup
__author__ = 'Ryan McGrath <ryan@venodesigns.net>' __author__ = 'Ryan McGrath <ryan@venodesigns.net>'
__version__ = '3.2.0' __version__ = '3.3.0'
packages = [ packages = [
'twython', 'twython',

View file

@ -19,7 +19,7 @@ Questions, comments? ryan@venodesigns.net
""" """
__author__ = 'Ryan McGrath <ryan@venodesigns.net>' __author__ = 'Ryan McGrath <ryan@venodesigns.net>'
__version__ = '3.2.0' __version__ = '3.3.0'
from .api import Twython from .api import Twython
from .streaming import TwythonStreamer from .streaming import TwythonStreamer