From 94bf91d8304983bbca53c0302e72a20db6988d70 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Sat, 10 Feb 2018 21:39:50 +0100 Subject: [PATCH] Bump plugin API and ABI version Signed-off-by: Sebastian Ramacher --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 4f3ab19..1d1634b 100644 --- a/meson.build +++ b/meson.build @@ -14,8 +14,8 @@ version_array = version.split('.') # * If any of the exported datastructures have changed in a incompatible way # bump SOMAJOR and set SOMINOR to 0. # * If a function has been added bump SOMINOR. -plugin_api_version = '2' -plugin_abi_version = '3' +plugin_api_version = '3' +plugin_abi_version = '4' conf_data = configuration_data() conf_data.set('ZVMAJOR', version_array[0])