Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion nipyapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.21.0
current_version = 0.22.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down