diff --git a/src/stratis_cli/_actions/_constants.py b/src/stratis_cli/_actions/_constants.py index ee707f2e6..35df59db0 100644 --- a/src/stratis_cli/_actions/_constants.py +++ b/src/stratis_cli/_actions/_constants.py @@ -23,7 +23,7 @@ SECTOR_SIZE = 512 MAXIMUM_STRATISD_VERSION = "4.0.0" -MINIMUM_STRATISD_VERSION = "3.5.0" +MINIMUM_STRATISD_VERSION = "3.6.0" assert Version(MINIMUM_STRATISD_VERSION) < Version(MAXIMUM_STRATISD_VERSION) REVISION = f"r{MINIMUM_STRATISD_VERSION.split('.')[1]}" diff --git a/src/stratis_cli/_actions/_introspect.py b/src/stratis_cli/_actions/_introspect.py index 7198e8a35..f3681959c 100644 --- a/src/stratis_cli/_actions/_introspect.py +++ b/src/stratis_cli/_actions/_introspect.py @@ -6,8 +6,8 @@ """, - "org.storage.stratis3.Manager.r5": """ - + "org.storage.stratis3.Manager.r6": """ + @@ -70,8 +70,8 @@ """, - "org.storage.stratis3.Report.r5": """ - + "org.storage.stratis3.Report.r6": """ + @@ -80,8 +80,8 @@ """, - "org.storage.stratis3.blockdev.r5": """ - + "org.storage.stratis3.blockdev.r6": """ + @@ -108,8 +108,8 @@ """, - "org.storage.stratis3.filesystem.r5": """ - + "org.storage.stratis3.filesystem.r6": """ + @@ -133,8 +133,8 @@ """, - "org.storage.stratis3.pool.r5": """ - + "org.storage.stratis3.pool.r6": """ + diff --git a/src/stratis_cli/_version.py b/src/stratis_cli/_version.py index 1fbe71ffb..f430e15f0 100644 --- a/src/stratis_cli/_version.py +++ b/src/stratis_cli/_version.py @@ -17,5 +17,5 @@ .. moduleauthor:: mulhern """ -__version_info__ = (3, 5, 1) +__version_info__ = (3, 6, 0) __version__ = ".".join(str(x) for x in __version_info__)