From 70438128f0f4d7adb7a3906bbef5c0a7dc329e9e Mon Sep 17 00:00:00 2001 From: mulhern Date: Thu, 30 Jul 2026 13:02:08 -0400 Subject: [PATCH] Require stratisd 3.10.0 Signed-off-by: mulhern --- src/stratis_cli/_actions/_constants.py | 2 +- src/stratis_cli/_actions/_introspect.py | 20 ++++++++++---------- src/stratis_cli/_version.py | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/stratis_cli/_actions/_constants.py b/src/stratis_cli/_actions/_constants.py index 2a1131b69..e6e438bf6 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.9.2" +MINIMUM_STRATISD_VERSION = "3.10.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 4088c2b39..ac03f6fd9 100644 --- a/src/stratis_cli/_actions/_introspect.py +++ b/src/stratis_cli/_actions/_introspect.py @@ -14,8 +14,8 @@ """, - "org.storage.stratis3.Manager.r9": """ - + "org.storage.stratis3.Manager.r10": """ + @@ -84,8 +84,8 @@ """, - "org.storage.stratis3.Report.r9": """ - + "org.storage.stratis3.Report.r10": """ + @@ -94,8 +94,8 @@ """, - "org.storage.stratis3.blockdev.r9": """ - + "org.storage.stratis3.blockdev.r10": """ + @@ -122,8 +122,8 @@ """, - "org.storage.stratis3.filesystem.r9": """ - + "org.storage.stratis3.filesystem.r10": """ + @@ -150,8 +150,8 @@ """, - "org.storage.stratis3.pool.r9": """ - + "org.storage.stratis3.pool.r10": """ + diff --git a/src/stratis_cli/_version.py b/src/stratis_cli/_version.py index b4229b35b..f44b377d3 100644 --- a/src/stratis_cli/_version.py +++ b/src/stratis_cli/_version.py @@ -17,5 +17,5 @@ .. moduleauthor:: mulhern """ -__version_info__ = (3, 9, 1) +__version_info__ = (3, 10, 0) __version__ = ".".join(str(x) for x in __version_info__)