diff --git a/changelog.md b/changelog.md index 2b86847042c59d18869afe632f45f43e9989ec24..e8d900d9ef3f70270d92ae278144b17e4d277ff5 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,14 @@ ## Changelog +### Version: 0.1.0.dev2 + +Release date: 23.04.2024 + +#### Changes + +- Added `tabulate` dependency +- Format `NtwDevice` device identification and TR configuration strings to table + ### Version: 0.1.0.dev1 Release date: 22.04.2024 diff --git a/setup.py b/setup.py index 3b8bcaf312565be16ddc800e11e1e7dc85bf64db..6e8bb4f6d71dceb00686055d7e30e16ba2e463fb 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( description='Diagnostics for iqrfpy', long_description=long_description, long_description_content_type='text/markdown', - version='0.1.0-dev1', + version='0.1.0-dev2', url='https://gitlab.iqrf.org/open-source/iqrf-sdk/iqrfpy/iqrfpy-app-helpers', author='Karel HanĂ¡k', author_email='karel.hanak@iqrf.org', @@ -46,6 +46,7 @@ setup( python_requires='>=3.10', install_requires=[ 'iqrfpy>=0.2.0', + 'iqrfpy-mqtt-transport', 'tabulate>=0.9.0', ] )