Skip to content

Commit

Permalink
Release v1.16.2
Browse files Browse the repository at this point in the history
Signed-off-by: Cole Miller <[email protected]>
  • Loading branch information
cole-miller committed Feb 15, 2024
1 parent c857ce2 commit 8835be1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AC_PREREQ(2.60)
AC_INIT([libdqlite], [1.16.1], [https://github.com/canonical/dqlite])
AC_INIT([libdqlite], [1.16.2], [https://github.com/canonical/dqlite])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([ac])

Expand Down Expand Up @@ -54,7 +54,7 @@ AC_SYS_LARGEFILE
# Checks for libraries
PKG_CHECK_MODULES(SQLITE, [sqlite3 >= 3.22.0], [], [])
PKG_CHECK_MODULES(UV, [libuv >= 1.8.0], [], [])
PKG_CHECK_MODULES(RAFT, [raft >= 0.17.1], [], [])
PKG_CHECK_MODULES(RAFT, [raft >= 0.18.1], [], [])

CC_CHECK_FLAGS_APPEND([AM_CFLAGS],[CFLAGS],[ \
-std=c11 \
Expand Down
2 changes: 1 addition & 1 deletion include/dqlite.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
*/
#define DQLITE_VERSION_MAJOR 1
#define DQLITE_VERSION_MINOR 16
#define DQLITE_VERSION_RELEASE 1
#define DQLITE_VERSION_RELEASE 2
#define DQLITE_VERSION_NUMBER \
(DQLITE_VERSION_MAJOR * 100 * 100 + DQLITE_VERSION_MINOR * 100 + \
DQLITE_VERSION_RELEASE)
Expand Down

0 comments on commit 8835be1

Please sign in to comment.