diff --git a/NEWS.md b/NEWS.md index fb7201c..0516f94 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,13 @@ # fscryptctl release notes +## Version 1.2.0 + +* `fscryptctl set_policy` now accepts the `--data-unit-size` option. + +* `fscryptctl get_policy` now shows the data unit size of the encryption policy. + +* Documented that CephFS now supports fscrypt. + ## Version 1.1.0 * Added a manual page for `fscryptctl`. diff --git a/fscryptctl.c b/fscryptctl.c index a1798e1..80f9ecc 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.1.0" +#define VERSION "v1.2.0" #endif #define ARRAY_SIZE(array) (sizeof(array) / sizeof((array)[0]))