From 17a67b238ce0539bdeafdc95961abac64fa16ea8 Mon Sep 17 00:00:00 2001 From: Kyle Swanson Date: Thu, 7 Dec 2023 09:53:38 -0800 Subject: [PATCH] libvmaf: v3.0.0 --- libvmaf/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libvmaf/meson.build b/libvmaf/meson.build index 6809c4930..82690668f 100644 --- a/libvmaf/meson.build +++ b/libvmaf/meson.build @@ -1,5 +1,5 @@ project('libvmaf', ['c', 'cpp'], - version : '2.3.1', + version : '3.0.0', default_options : ['c_std=c11', 'cpp_std=c++11', 'warning_level=2', @@ -8,7 +8,7 @@ project('libvmaf', ['c', 'cpp'], ], meson_version: '>= 0.56.1') -vmaf_soname_version = '1.1.3' +vmaf_soname_version = '3.0.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]