From 3503ca0da303be38e6cd5a8af88d8948b0410b06 Mon Sep 17 00:00:00 2001 From: Kyle Swanson Date: Wed, 13 Jan 2021 19:53:21 -0800 Subject: [PATCH] libvmaf: api v2.1.1, soname v1.1.1 --- libvmaf/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libvmaf/meson.build b/libvmaf/meson.build index 25f00418c..f5a58cb87 100644 --- a/libvmaf/meson.build +++ b/libvmaf/meson.build @@ -1,5 +1,5 @@ project('libvmaf', ['c', 'cpp'], - version : '2.1.0', + version : '2.1.1', 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.1.0' +vmaf_soname_version = '1.1.1' 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]