From 7c80c73c084ce9ea49a03b814dac7a82fd7b4c23 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Mon, 30 Jan 2023 22:50:15 -0800 Subject: [PATCH] v1.1.0 --- NEWS.md | 10 ++++++++++ fscryptctl.c | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 37595ba..fb7201c 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,15 @@ # fscryptctl release notes +## Version 1.1.0 + +* Added a manual page for `fscryptctl`. + +* Added support for algorithms that the kernel recently added support for: + AES-256-HCTR2, SM4-XTS, and SM4-CTS. + +* Added a NEWS.md file that contains the release notes, and backfilled it from + the GitHub release notes. + ## Version 1.0.0 `fscryptctl` is now stable with release v1.0.0. diff --git a/fscryptctl.c b/fscryptctl.c index 3cc90da..fce6920 100644 --- a/fscryptctl.c +++ b/fscryptctl.c @@ -38,7 +38,7 @@ #ifndef VERSION // Update this on each new release, along with the NEWS.md file. -#define VERSION "v1.0.0" +#define VERSION "v1.1.0" #endif #define ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0]))