From f1cd9ab28a608dc5683ad211d98bb754df3c2aed Mon Sep 17 00:00:00 2001 From: Cole Miller Date: Wed, 23 Oct 2024 14:04:30 -0400 Subject: [PATCH] Release v1.17.1 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 94a52aa9d..f5f449cc7 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.60) -AC_INIT([libdqlite], [1.17.0], [https://github.com/canonical/dqlite]) +AC_INIT([libdqlite], [1.17.1], [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 abc7aa686..fe800d61a 100644 --- a/include/dqlite.h +++ b/include/dqlite.h @@ -28,7 +28,7 @@ */ #define DQLITE_VERSION_MAJOR 1 #define DQLITE_VERSION_MINOR 17 -#define DQLITE_VERSION_RELEASE 0 +#define DQLITE_VERSION_RELEASE 1 #define DQLITE_VERSION_NUMBER \ (DQLITE_VERSION_MAJOR * 100 * 100 + DQLITE_VERSION_MINOR * 100 + \ DQLITE_VERSION_RELEASE)