diff --git a/docs/conf.py b/docs/conf.py index e6391197958e024eb9333e2e039d5190fc652974..1f3c49a78efff567dacf8de5310f954c94c42af3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,9 +64,9 @@ copyright = u'2017, Alexandre Ferland' # built documents. # # The short X.Y version. -version = '1.1.1' +version = '1.1.2' # The full version, including alpha/beta/rc tags. -release = '1.1.1' +release = '1.1.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/index.rst b/docs/index.rst index 3cf6427a20e3579d30276c84cc2f6ae591eda13e..dcc2e90ea83c89e8268fa5253e35bb36f62263b8 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -116,6 +116,11 @@ History Changes: +- 1.1.2 July 17, 2017 + - Merge GitHub PR `#30 <https://github.com/admiralobvious/flask-simpleldap/pull/30>`_, + Fix for python3 + - Fix decoding bytes in PY3 for @ldap.group_required. + - 1.1.1 April 10, 2017 - Merge GitHub pull `#26 <https://github.com/admiralobvious/flask-simpleldap/pull/26>`_, Fix set_option call to LDAP for SSL CERT diff --git a/setup.py b/setup.py index de66075dbf4f1f8042bacf61fbd04a3e11030a43..137a98e80711cf9896467ac83ae5975aafd22fd7 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from setuptools import setup setup( name='Flask-SimpleLDAP', - version='1.1.1', + version='1.1.2', url='https://github.com/admiralobvious/flask-simpleldap', license='MIT', author='Alexandre Ferland', @@ -36,3 +36,4 @@ setup( 'Topic :: Software Development :: Libraries :: Python Modules' ] ) +