diff --git a/changelog.rst b/changelog.rst index 3691bb4..8824231 100644 --- a/changelog.rst +++ b/changelog.rst @@ -1,6 +1,12 @@ Changelog ========= +2.2.5 (2018-11-05) +------------------ +* Explicitly declaring and testing Python 3.5, 3.6, and 3.7 support +* Tornado 5.x support (Tornado 4.x is supported as well) +* Dropped support for Python 2.6 and 3.3 + 2.2.4 (2016-10-31) ------------------ * Resiliency to PostgreSQL restarts (`issue 147`_) diff --git a/docs/conf.py b/docs/conf.py index 2736741..f61b5c4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -49,9 +49,9 @@ # built documents. # # The short X.Y version. -version = '2.2.4' +version = '2.2.5' # The full version, including alpha/beta/rc tags. -release = '2.2.4' +release = '2.2.5' # 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 8ce337b..4f1d7f5 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ setup( name='Momoko', - version='2.2.4', + version='2.2.5', description="Momoko wraps Psycopg2's functionality for use in Tornado.", long_description=open('README.rst').read(), author='Frank Smit & Zaar Hai',