From aa1a3c0519d9e3880a66f3d49904280c90af42b9 Mon Sep 17 00:00:00 2001 From: HolyWu Date: Mon, 4 Oct 2021 23:45:02 +0800 Subject: [PATCH] Bump version --- ReadMpls/ReadMpls.cpp | 2 +- meson.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ReadMpls/ReadMpls.cpp b/ReadMpls/ReadMpls.cpp index cc85cde..b5b2dad 100644 --- a/ReadMpls/ReadMpls.cpp +++ b/ReadMpls/ReadMpls.cpp @@ -61,7 +61,7 @@ static void VS_CC readMplsCreate(const VSMap* in, VSMap* out, [[maybe_unused]] v // Init VS_EXTERNAL_API(void) VapourSynthPluginInit2(VSPlugin* plugin, const VSPLUGINAPI* vspapi) { - vspapi->configPlugin("com.holywu.readmpls", "mpls", "Get m2ts clip id from a playlist and return a dict", VS_MAKE_VERSION(4, 0), VAPOURSYNTH_API_VERSION, 0, plugin); + vspapi->configPlugin("com.holywu.readmpls", "mpls", "Get m2ts clip id from a playlist and return a dict", VS_MAKE_VERSION(5, 0), VAPOURSYNTH_API_VERSION, 0, plugin); vspapi->registerFunction("Read", "bd_path:data;" "playlist:int;" diff --git a/meson.build b/meson.build index 807f628..be91506 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project('ReadMpls', 'cpp', default_options: ['buildtype=release', 'warning_level=2', 'b_lto=true', 'b_ndebug=if-release', 'cpp_std=c++17'], license: 'LGPL-3.0-or-later', meson_version: '>=0.51.0', - version: '4' + version: '5' ) vapoursynth_dep = dependency('vapoursynth', version: '>=55').partial_dependency(compile_args: true, includes: true)