From 5fa53384b22e250a1e300a4153edabc1a14296a0 Mon Sep 17 00:00:00 2001 From: Cole Miller Date: Mon, 29 Jul 2024 07:26:04 -0500 Subject: [PATCH] Release v1.16.7 Signed-off-by: Cole Miller --- configure.ac | 2 +- include/dqlite.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index d673a9b6d..6bc4afebc 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.60) -AC_INIT([libdqlite], [1.16.5], [https://github.com/canonical/dqlite]) +AC_INIT([libdqlite], [1.16.7], [https://github.com/canonical/dqlite]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR([ac]) diff --git a/include/dqlite.h b/include/dqlite.h index b558a85a3..f064f4836 100644 --- a/include/dqlite.h +++ b/include/dqlite.h @@ -28,7 +28,7 @@ */ #define DQLITE_VERSION_MAJOR 1 #define DQLITE_VERSION_MINOR 16 -#define DQLITE_VERSION_RELEASE 5 +#define DQLITE_VERSION_RELEASE 7 #define DQLITE_VERSION_NUMBER \ (DQLITE_VERSION_MAJOR * 100 * 100 + DQLITE_VERSION_MINOR * 100 + \ DQLITE_VERSION_RELEASE)