Skip to content

Commit

Permalink
Merge pull request #1107 from mulkieran/updates-for-r8
Browse files Browse the repository at this point in the history
Update to version 3.8.0
  • Loading branch information
mulkieran authored Nov 8, 2024
2 parents 0cf1c3b + b6ffd4f commit d84b50c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/stratis_cli/_actions/_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
SECTOR_SIZE = 512

MAXIMUM_STRATISD_VERSION = "4.0.0"
MINIMUM_STRATISD_VERSION = "3.7.0"
MINIMUM_STRATISD_VERSION = "3.8.0"
assert Version(MINIMUM_STRATISD_VERSION) < Version(MAXIMUM_STRATISD_VERSION)

REVISION = f"r{MINIMUM_STRATISD_VERSION.split('.')[1]}"
Expand Down
20 changes: 10 additions & 10 deletions src/stratis_cli/_actions/_introspect.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
</method>
</interface>
""",
"org.storage.stratis3.Manager.r7": """
<interface name="org.storage.stratis3.Manager.r7">
"org.storage.stratis3.Manager.r8": """
<interface name="org.storage.stratis3.Manager.r8">
<method name="CreatePool">
<arg name="name" type="s" direction="in" />
<arg name="devices" type="as" direction="in" />
Expand Down Expand Up @@ -72,8 +72,8 @@
</property>
</interface>
""",
"org.storage.stratis3.Report.r7": """
<interface name="org.storage.stratis3.Report.r7">
"org.storage.stratis3.Report.r8": """
<interface name="org.storage.stratis3.Report.r8">
<method name="GetReport">
<arg name="name" type="s" direction="in" />
<arg name="result" type="s" direction="out" />
Expand All @@ -82,8 +82,8 @@
</method>
</interface>
""",
"org.storage.stratis3.blockdev.r7": """
<interface name="org.storage.stratis3.blockdev.r7">
"org.storage.stratis3.blockdev.r8": """
<interface name="org.storage.stratis3.blockdev.r8">
<property name="Devnode" type="s" access="read">
<annotation name="org.freedesktop.DBus.Property.EmitsChangedSignal" value="const" />
</property>
Expand All @@ -110,8 +110,8 @@
</property>
</interface>
""",
"org.storage.stratis3.filesystem.r7": """
<interface name="org.storage.stratis3.filesystem.r7">
"org.storage.stratis3.filesystem.r8": """
<interface name="org.storage.stratis3.filesystem.r8">
<method name="SetName">
<arg name="name" type="s" direction="in" />
<arg name="result" type="(bs)" direction="out" />
Expand All @@ -138,8 +138,8 @@
</property>
</interface>
""",
"org.storage.stratis3.pool.r7": """
<interface name="org.storage.stratis3.pool.r7">
"org.storage.stratis3.pool.r8": """
<interface name="org.storage.stratis3.pool.r8">
<method name="AddCacheDevs">
<arg name="devices" type="as" direction="in" />
<arg name="results" type="(bao)" direction="out" />
Expand Down
2 changes: 1 addition & 1 deletion src/stratis_cli/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
.. moduleauthor:: mulhern <[email protected]>
"""

__version_info__ = (3, 7, 0)
__version_info__ = (3, 8, 0)
__version__ = ".".join(str(x) for x in __version_info__)

0 comments on commit d84b50c

Please sign in to comment.