From 6e2ebae5b128ea3f3c7c1c9b7f97a37a8dd7f370 Mon Sep 17 00:00:00 2001 From: Peter Slump Date: Tue, 26 Feb 2019 20:31:43 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.2-dev=20=E2=86=92=200.2.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.rst | 1 + docs/conf.py | 4 ++-- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 7fdd673..d6cb186 100644 --- a/README.rst +++ b/README.rst @@ -84,6 +84,7 @@ Release Notes ============= **unreleased** +**v0.2.2** * Added support for UMA1 for Keycloak < 4.0 * Allow to query registered users (thanks to [aberres](/aberres)) diff --git a/docs/conf.py b/docs/conf.py index d1821eb..b62aa5e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = '0.2.2-dev' +version = '0.2.2' # The full version, including alpha/beta/rc tags. -release = '0.2.2-dev' +release = '0.2.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index abeba8b..a36a021 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.2-dev +current_version = 0.2.2 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? diff --git a/setup.py b/setup.py index 2cad076..30acc61 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import find_packages, setup -VERSION = '0.2.2-dev' +VERSION = '0.2.2' AIO_COMPATIBLE = sys.version_info >= (3, 5, 3) with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: