From 7705880df77538f5d34976da5e26db1f80a75e53 Mon Sep 17 00:00:00 2001 From: Leif Johansson Date: Wed, 19 Feb 2020 14:37:21 +0100 Subject: [PATCH] cut 1.1.2 --- NEWS.txt | 5 +++++ docs/conf.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/NEWS.txt b/NEWS.txt index aa0ad7c4..830ff90b 100644 --- a/NEWS.txt +++ b/NEWS.txt @@ -123,3 +123,8 @@ to sign using HSMs. The only mandatory non-python dependency now is lxml. * Release date: tor 18 jul 2019 16:05:54 CEST * Fix bug affecting entityIDs with querystring components thx to Maja Wolniewicz +1.1.2 +--- +* Release date: ons 19 feb 2020 14:35:45 CET +* Bugfixes +* Documentation updates diff --git a/docs/conf.py b/docs/conf.py index f6d16db7..378edd19 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -58,7 +58,7 @@ def setup(app): # The short X.Y version. version = '1.1' # 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/setup.py b/setup.py index be96c23a..e802bd73 100755 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from setuptools import find_packages __author__ = 'Leif Johansson' -__version__ = '1.1.2dev0' +__version__ = '1.1.2' here = abspath(dirname(__file__)) README = open(join(here, 'README.rst')).read()