From 7fe0b4487f05903c6d99428aab36400cf14ee97c Mon Sep 17 00:00:00 2001 From: mulhern Date: Thu, 30 Mar 2023 11:27:51 -0400 Subject: [PATCH] version 3.5.1 Signed-off-by: mulhern --- CHANGES.txt | 37 +++++++++++++++++++++++++++++++++++++ src/stratis_cli/_version.py | 2 +- 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index 3f7b02b7b..ab35e9efa 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,40 @@ +stratis-cli 3.5.1 +================= +Required stratisd version: 3.5.0 + +Recommended development environment: Fedora 37 +Lowest supported Python interpreter: 3.9.16 + +- Add UUID column for blockdev list: + https://github.com/stratis-storage/stratis-cli/issues/962 + https://github.com/stratis-storage/stratis-cli/pull/972 + +- Display stratisd error codes and blockdev tier values in human-readable form: + https://github.com/stratis-storage/stratis-cli/issues/967 + https://github.com/stratis-storage/stratis-cli/pull/974 + +- Display Clevis configuration in human-readable form: + https://github.com/stratis-storage/stratis-cli/issues/958 + https://github.com/stratis-storage/stratis-cli/pull/968 + https://github.com/stratis-storage/stratis-cli/pull/965 + https://github.com/stratis-storage/stratis-cli/pull/963 + +- Fix expansion of an error message: + https://github.com/stratis-storage/stratis-cli/pull/966 + +- Tidies and Maintenance: + https://github.com/stratis-storage/stratis-cli/pull/976 + https://github.com/stratis-storage/stratis-cli/pull/975 + https://github.com/stratis-storage/stratis-cli/pull/973 + https://github.com/stratis-storage/stratis-cli/pull/971 + https://github.com/stratis-storage/stratis-cli/pull/970 + https://github.com/stratis-storage/stratis-cli/pull/964 + https://github.com/stratis-storage/stratis-cli/pull/960 + https://github.com/stratis-storage/stratis-cli/pull/959 + https://github.com/stratis-storage/stratis-cli/pull/956 + https://github.com/stratis-storage/stratis-cli/pull/955 + + stratis-cli 3.5.0 ================= Required stratisd version: 3.5.0 diff --git a/src/stratis_cli/_version.py b/src/stratis_cli/_version.py index fbb15d300..1fbe71ffb 100644 --- a/src/stratis_cli/_version.py +++ b/src/stratis_cli/_version.py @@ -17,5 +17,5 @@ .. moduleauthor:: mulhern """ -__version_info__ = (3, 5, 0) +__version_info__ = (3, 5, 1) __version__ = ".".join(str(x) for x in __version_info__)