diff --git a/changelog.rst b/changelog.rst index b339c68..27427eb 100644 --- a/changelog.rst +++ b/changelog.rst @@ -1,6 +1,13 @@ Changelog ========= +2.1.1 (2015-08-03) +------------------ +* Fixed JSON/HSTORE support with named cursors (`issue 112`_). Thanks to helminster_. + +.. _issue 112: https://github.com/FSX/momoko/issues/112 +.. _helminster: https://github.com/helminster + 2.1.0 (2015-07-08) ------------------ * Auto shrink support. Thanks to `John Chumnanvech`_. diff --git a/docs/conf.py b/docs/conf.py index 10d82e3..b75330a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -49,9 +49,9 @@ # built documents. # # The short X.Y version. -version = '2.1.0' +version = '2.1.1' # The full version, including alpha/beta/rc tags. -release = '2.1.0' +release = '2.1.1' # 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 e9c6eea..c93c0be 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ setup( name='Momoko', - version='2.1.0', + version='2.1.1', description="Momoko wraps Psycopg2's functionality for use in Tornado.", long_description=open('README.rst').read(), author='Frank Smit & Zaar Hai',