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: