From 658a5ca09b4452187650f459a0d227e64cc7e663 Mon Sep 17 00:00:00 2001 From: Cole Miller Date: Tue, 22 Oct 2024 23:23:38 -0400 Subject: [PATCH] Release v1.18.0 Signed-off-by: Cole Miller --- configure.ac | 2 +- include/dqlite.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 50bf8b61e..190311762 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.60) -AC_INIT([libdqlite], [1.16.7], [https://github.com/canonical/dqlite]) +AC_INIT([libdqlite], [1.18.0], [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 d0dbe153f..669ac2e7a 100644 --- a/include/dqlite.h +++ b/include/dqlite.h @@ -27,8 +27,8 @@ * Version. */ #define DQLITE_VERSION_MAJOR 1 -#define DQLITE_VERSION_MINOR 16 -#define DQLITE_VERSION_RELEASE 7 +#define DQLITE_VERSION_MINOR 18 +#define DQLITE_VERSION_RELEASE 0 #define DQLITE_VERSION_NUMBER \ (DQLITE_VERSION_MAJOR * 100 * 100 + DQLITE_VERSION_MINOR * 100 + \ DQLITE_VERSION_RELEASE)