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__)