aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2021-01-19 14:42:31 -0800
committerEric Biggers <ebiggers@google.com>2021-01-19 14:44:55 -0800
commita92b1a54b003879322c044adf0ae3ea3e95e7348 (patch)
tree8b4c38874fd2355b35e745421a8319def95315a3
parentcae3f5232767eafac25629e9750ef8ed8d96eccf (diff)
downloadfsverity-utils-a92b1a54b003879322c044adf0ae3ea3e95e7348.tar.gz
v1.3v1.3
Signed-off-by: Eric Biggers <ebiggers@google.com>
-rw-r--r--NEWS.md19
-rw-r--r--include/libfsverity.h2
-rw-r--r--lib/libfsverity.pc.in2
3 files changed, 21 insertions, 2 deletions
diff --git a/NEWS.md b/NEWS.md
index 116ff0f..8745745 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,5 +1,24 @@
# fsverity-utils release notes
+## Version 1.3
+
+* Added a `fsverity digest` subcommand.
+
+* Added `libfsverity_enable()` and `libfsverity_enable_with_sig()`.
+
+* Added basic support for Windows builds of `fsverity` using MinGW.
+
+* `fsverity` now defaults to 4096-byte blocks on all platforms.
+
+* libfsverity now will use SHA-256 with 4096-byte blocks if the
+ `hash_algorithm` and `block_size` fields are left 0.
+
+* `make install` now installs a pkg-config file for libfsverity.
+
+* The Makefile now uses pkg-config to get the libcrypto build flags.
+
+* Fixed `make check` with `USE_SHARED_LIB=1`.
+
## Version 1.2
* Changed license from GPL to MIT.
diff --git a/include/libfsverity.h b/include/libfsverity.h
index 6c4992c..6c42e5e 100644
--- a/include/libfsverity.h
+++ b/include/libfsverity.h
@@ -22,7 +22,7 @@ extern "C" {
#include <stdint.h>
#define FSVERITY_UTILS_MAJOR_VERSION 1
-#define FSVERITY_UTILS_MINOR_VERSION 2
+#define FSVERITY_UTILS_MINOR_VERSION 3
#define FS_VERITY_HASH_ALG_SHA256 1
#define FS_VERITY_HASH_ALG_SHA512 2
diff --git a/lib/libfsverity.pc.in b/lib/libfsverity.pc.in
index 613e9bc..be3ef44 100644
--- a/lib/libfsverity.pc.in
+++ b/lib/libfsverity.pc.in
@@ -4,7 +4,7 @@ includedir=@INCDIR@
Name: libfsverity
Description: fs-verity library
-Version: 1.2
+Version: 1.3
Libs: -L${libdir} -lfsverity
Requires.private: libcrypto
Cflags: -I${includedir}