From e5512bd3f2658fb78f359f12c9db43e824d646fd Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Thu, 28 Apr 2022 22:44:09 +0300 Subject: [PATCH] build: bump schema version --- configure.ac | 2 +- meson.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index a7cb234a..745dd13f 100644 --- a/configure.ac +++ b/configure.ac @@ -190,7 +190,7 @@ PKG_CHECK_MODULES(XAPIAN,xapian-core >= 1.4,[ # note that MU_STORE_SCHEMA_VERSION does not follow mu versioning, as we # hopefully don't have updates for each version; also, this has nothing to do # with Xapian's software version -AC_DEFINE(MU_STORE_SCHEMA_VERSION,["453"],['Schema' version of the database]) +AC_DEFINE(MU_STORE_SCHEMA_VERSION,["454"],['Schema' version of the database]) ############################################################################### ############################################################################### diff --git a/meson.build b/meson.build index 27897476..01cf770a 100644 --- a/meson.build +++ b/meson.build @@ -71,7 +71,7 @@ endforeach # config.h setup # config_h_data=configuration_data() -config_h_data.set_quoted('MU_STORE_SCHEMA_VERSION', '453') +config_h_data.set_quoted('MU_STORE_SCHEMA_VERSION', '454') config_h_data.set_quoted('PACKAGE_VERSION', meson.project_version()) config_h_data.set_quoted('PACKAGE_STRING', meson.project_name() + ' ' + meson.project_version())