From f26e5c8eafdf882fee20ef411b183baf4860b0d3 Mon Sep 17 00:00:00 2001 From: HolyWu Date: Sun, 10 Oct 2021 14:06:45 +0800 Subject: [PATCH] Bump version --- TTempSmooth/TTempSmooth.cpp | 2 +- meson.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/TTempSmooth/TTempSmooth.cpp b/TTempSmooth/TTempSmooth.cpp index 516e13d..6a4e9fd 100644 --- a/TTempSmooth/TTempSmooth.cpp +++ b/TTempSmooth/TTempSmooth.cpp @@ -615,7 +615,7 @@ static void VS_CC ttempsmoothCreate(const VSMap* in, VSMap* out, [[maybe_unused] // Init VS_EXTERNAL_API(void) VapourSynthPluginInit2(VSPlugin* plugin, const VSPLUGINAPI* vspapi) { - vspapi->configPlugin("com.holywu.ttempsmooth", "ttmpsm", "A basic, motion adaptive, temporal smoothing filter", VS_MAKE_VERSION(4, 0), VAPOURSYNTH_API_VERSION, 0, plugin); + vspapi->configPlugin("com.holywu.ttempsmooth", "ttmpsm", "A basic, motion adaptive, temporal smoothing filter", VS_MAKE_VERSION(4, 1), VAPOURSYNTH_API_VERSION, 0, plugin); vspapi->registerFunction("TTempSmooth", "clip:vnode;" "maxr:int:opt;" diff --git a/meson.build b/meson.build index c9d0e50..d74f6ab 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project('TTempSmooth', 'cpp', default_options: ['buildtype=release', 'warning_level=2', 'b_lto=true', 'b_ndebug=if-release', 'cpp_std=c++17'], license: 'GPL-3.0-or-later', meson_version: '>=0.51.0', - version: '4' + version: '4.1' ) cxx = meson.get_compiler('cpp')