From 85e6231aa4052873255fcbc55c6a79dd319bb4c9 Mon Sep 17 00:00:00 2001 From: mulhern Date: Wed, 27 May 2026 16:35:21 -0400 Subject: [PATCH] version 3.9.1 Signed-off-by: the Mulhern --- CHANGES.txt | 18 ++++++++++++++++++ src/stratis_cli/_version.py | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index bc9f6216b..72b766e5f 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,21 @@ +stratis-cli 3.9.1 +================= +Required stratisd version: 3.9.2 + +Recommended development environment: Fedora 43 + +- Increase minimum stratisd version to 3.9.2: + https://github.com/stratis-storage/stratis-cli/pull/1285 + +- Remove match for org.freedesktop.zbus.Error: + https://github.com/stratis-storage/stratis-cli/pull/1284 + +- Tidies and Maintenance: + https://github.com/stratis-storage/stratis-cli/pull/1283 + https://github.com/stratis-storage/stratis-cli/pull/1282 + https://github.com/stratis-storage/stratis-cli/pull/1275 + + stratis-cli 3.9.0 ================= Required stratisd version: 3.9.0 diff --git a/src/stratis_cli/_version.py b/src/stratis_cli/_version.py index cd51a928d..b4229b35b 100644 --- a/src/stratis_cli/_version.py +++ b/src/stratis_cli/_version.py @@ -17,5 +17,5 @@ .. moduleauthor:: mulhern """ -__version_info__ = (3, 9, 0) +__version_info__ = (3, 9, 1) __version__ = ".".join(str(x) for x in __version_info__)