From b90a8396864c9824a43838a5879f6ab01420c69e Mon Sep 17 00:00:00 2001 From: Adrian Perez de Castro Date: Mon, 19 Sep 2022 22:34:29 +0300 Subject: [PATCH] Release version 1.14.0 --- CMakeLists.txt | 2 +- NEWS | 7 +++++++ include/wpe/libwpe-version.h | 4 ++-- meson.build | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d34a4b54..7c928b49 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ set(WPE_API_VERSION "1.0") # - If binary compatibility has been broken (eg removed or changed interfaces) # change to C+1:0:0 # - If the interface is the same as the previous version, change to C:R+1:A -calculate_library_versions_from_libtool_triple(LIBWPE 8 4 7) +calculate_library_versions_from_libtool_triple(LIBWPE 9 0 8) project(libwpe VERSION "${PROJECT_VERSION}") diff --git a/NEWS b/NEWS index 3b47c25c..030fbaad 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +=========================== +1.14.0 - September 19, 2022 +=========================== + +- New API which allow clients to supply an alternative mechanism for + spawning WebKit auxiliart processes. + ========================= 1.13.90 - August 23, 2022 ========================= diff --git a/include/wpe/libwpe-version.h b/include/wpe/libwpe-version.h index e81a3238..cf57c27d 100644 --- a/include/wpe/libwpe-version.h +++ b/include/wpe/libwpe-version.h @@ -28,7 +28,7 @@ #define LIBWPE_VERSION_H #define WPE_MAJOR_VERSION 1 -#define WPE_MINOR_VERSION 13 -#define WPE_MICRO_VERSION 90 +#define WPE_MINOR_VERSION 14 +#define WPE_MICRO_VERSION 0 #endif /* !LIBWPE_VERSION_H */ diff --git a/meson.build b/meson.build index 290dcd48..90f2b2ff 100644 --- a/meson.build +++ b/meson.build @@ -21,7 +21,7 @@ api_version = '1.0' # - If binary compatibility has been broken (eg removed or changed interfaces) # change to [C+1, 0, 0] # - If the interface is the same as the previous version, use [C, R+1, A]. -soversion = [8, 4, 7] +soversion = [9, 0, 8] # Mangle [C, R, A] into an actual usable *soversion*. soversion_major = soversion[0] - soversion[2] # Current-Age