From 63b0bab9c435a57dfefbc9571ee2be14ba316f6e Mon Sep 17 00:00:00 2001 From: admiralobvious <aferlandqc@gmail.com> Date: Mon, 17 Jul 2017 10:48:27 -0400 Subject: [PATCH] update version number --- docs/conf.py | 4 ++-- docs/index.rst | 5 +++++ setup.py | 3 ++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index e639119..1f3c49a 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 3cf6427..dcc2e90 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 de66075..137a98e 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' ] ) + -- GitLab