Skip to content

Commit 975431c

Browse files
committed
Revert "Increase version to 3.9.0"
This reverts commit 6bb1e8f.
1 parent 6a0b3ed commit 975431c

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

.packit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ actions:
1212
- "git clone https://github.com/stratis-storage/ci --depth=1 ../distro"
1313
- "mv ../distro/mockbuild_test/stratis-cli.spec ../distro/stratis-cli.spec"
1414
create-archive:
15-
- "sh -c 'python3 ../distro/release_management/create_artifacts.py ../distro/ --pre-release --specfile-path=../distro/stratis-cli.spec stratis-cli'"
15+
- "sh -c 'python3 ../distro/release_management/create_artifacts.py ../distro/ --post-release --specfile-path=../distro/stratis-cli.spec stratis-cli'"
1616
fix-spec-file:
1717
- "echo 'skipping automatic fix-spec-file actions'"
1818
get-current-version:

src/stratis_cli/_actions/_constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
SECTOR_SIZE = 512
2424

2525
MAXIMUM_STRATISD_VERSION = "4.0.0"
26-
MINIMUM_STRATISD_VERSION = "3.9.0"
26+
MINIMUM_STRATISD_VERSION = "3.8.2"
2727
assert Version(MINIMUM_STRATISD_VERSION) < Version(MAXIMUM_STRATISD_VERSION)
2828

2929
REVISION = f"r{MINIMUM_STRATISD_VERSION.split('.')[1]}"

src/stratis_cli/_actions/_introspect.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
</method>
77
</interface>
88
""",
9-
"org.storage.stratis3.Manager.r9": """
10-
<interface name="org.storage.stratis3.Manager.r9">
9+
"org.storage.stratis3.Manager.r8": """
10+
<interface name="org.storage.stratis3.Manager.r8">
1111
<method name="CreatePool">
1212
<arg name="name" type="s" direction="in" />
1313
<arg name="devices" type="as" direction="in" />
@@ -75,8 +75,8 @@
7575
</property>
7676
</interface>
7777
""",
78-
"org.storage.stratis3.Report.r9": """
79-
<interface name="org.storage.stratis3.Report.r9">
78+
"org.storage.stratis3.Report.r8": """
79+
<interface name="org.storage.stratis3.Report.r8">
8080
<method name="GetReport">
8181
<arg name="name" type="s" direction="in" />
8282
<arg name="result" type="s" direction="out" />
@@ -85,8 +85,8 @@
8585
</method>
8686
</interface>
8787
""",
88-
"org.storage.stratis3.blockdev.r9": """
89-
<interface name="org.storage.stratis3.blockdev.r9">
88+
"org.storage.stratis3.blockdev.r8": """
89+
<interface name="org.storage.stratis3.blockdev.r8">
9090
<property name="Devnode" type="s" access="read">
9191
<annotation name="org.freedesktop.DBus.Property.EmitsChangedSignal" value="const" />
9292
</property>
@@ -113,8 +113,8 @@
113113
</property>
114114
</interface>
115115
""",
116-
"org.storage.stratis3.filesystem.r9": """
117-
<interface name="org.storage.stratis3.filesystem.r9">
116+
"org.storage.stratis3.filesystem.r8": """
117+
<interface name="org.storage.stratis3.filesystem.r8">
118118
<method name="SetName">
119119
<arg name="name" type="s" direction="in" />
120120
<arg name="result" type="(bs)" direction="out" />
@@ -141,8 +141,8 @@
141141
</property>
142142
</interface>
143143
""",
144-
"org.storage.stratis3.pool.r9": """
145-
<interface name="org.storage.stratis3.pool.r9">
144+
"org.storage.stratis3.pool.r8": """
145+
<interface name="org.storage.stratis3.pool.r8">
146146
<method name="AddCacheDevs">
147147
<arg name="devices" type="as" direction="in" />
148148
<arg name="results" type="(bao)" direction="out" />

src/stratis_cli/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
.. moduleauthor:: mulhern <amulhern@redhat.com>
1818
"""
1919

20-
__version_info__ = (3, 9, 0)
20+
__version_info__ = (3, 8, 2)
2121
__version__ = ".".join(str(x) for x in __version_info__)

0 commit comments

Comments
 (0)