diff --git a/HISTORY.rst b/HISTORY.rst index e56d6579..1259227a 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,11 @@ History ------- +3.1.2 (2013-12-05) +++++++++++++++++++ + +- Fixed Changelog (HISTORY.rst) + 3.1.1 (2013-12-05) ++++++++++++++++++ diff --git a/docs/conf.py b/docs/conf.py index 6367fe26..b0b98eb4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,9 +50,9 @@ # built documents. # # The short X.Y version. -version = '3.1.1' +version = '3.1.2' # The full version, including alpha/beta/rc tags. -release = '3.1.1' +release = '3.1.2' # 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 7c8df69c..d2d3570d 100755 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from distutils.core import setup __author__ = 'Ryan McGrath ' -__version__ = '3.1.1' +__version__ = '3.1.2' packages = [ 'twython', diff --git a/twython/__init__.py b/twython/__init__.py index bd4bc0b7..ab4df37f 100644 --- a/twython/__init__.py +++ b/twython/__init__.py @@ -18,7 +18,7 @@ """ __author__ = 'Ryan McGrath ' -__version__ = '3.1.1' +__version__ = '3.1.2' from .api import Twython from .streaming import TwythonStreamer