From 2e1b24d8344c8e8dbb770699ac5beae8b11463d4 Mon Sep 17 00:00:00 2001 From: Kyle Swanson Date: Wed, 30 Dec 2020 08:47:55 -0800 Subject: [PATCH] libvmaf: api v2.1.0, soname v1.1.0 --- libvmaf/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libvmaf/meson.build b/libvmaf/meson.build index bb5228fd7..25f00418c 100644 --- a/libvmaf/meson.build +++ b/libvmaf/meson.build @@ -1,5 +1,5 @@ project('libvmaf', ['c', 'cpp'], - version : '2.0.0', + version : '2.1.0', default_options : ['c_std=c11', 'cpp_std=c++11', 'warning_level=2', @@ -8,7 +8,7 @@ project('libvmaf', ['c', 'cpp'], ], meson_version: '>= 0.47.0') -vmaf_soname_version = '1.0.0' +vmaf_soname_version = '1.1.0' vmaf_api_version_array = vmaf_soname_version.split('.') vmaf_api_version_major = vmaf_api_version_array[0] vmaf_api_version_minor = vmaf_api_version_array[1]