diff --git a/docs/history.rst b/docs/history.rst index c8c12b38..059d7c42 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -2,6 +2,13 @@ History ======= +0.22.0 (2025-03-25) +-------------------- + +| Updated low level clients for NiFi & Registry 1.28.1 release +| Updates to supported Python versions, handing Template deprecation in NiFi-2.x, and Windows development support +| Add support for mTLS for Nifi and Registry + 0.21.0 (2024-07-14) ------------------- diff --git a/nipyapi/__init__.py b/nipyapi/__init__.py index a11cdb85..ed5cd3fd 100644 --- a/nipyapi/__init__.py +++ b/nipyapi/__init__.py @@ -9,7 +9,7 @@ __author__ = """Daniel Chaffelson""" __email__ = 'chaffelson@gmail.com' -__version__ = '0.21.0' +__version__ = '0.22.0' __all__ = ['canvas', 'system', 'templates', 'config', 'nifi', 'registry', 'versioning', 'demo', 'utils', 'security', 'parameters'] diff --git a/setup.cfg b/setup.cfg index 0287e4b9..dd64434a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.21.0 +current_version = 0.22.0 commit = True tag = True diff --git a/setup.py b/setup.py index b4ef1e0c..2c4dd696 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ with open('docs/history.rst') as history_file: history = history_file.read() -proj_version = '0.21.0' +proj_version = '0.22.0' with open('requirements.txt') as reqs_file: requirements = reqs_file.read().splitlines()