Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
HolyWu committed Feb 26, 2022
1 parent bab6be5 commit 01d8bf4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion AddGrain/AddGrain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ static void VS_CC addgrainCreate(const VSMap* in, VSMap* out, [[maybe_unused]] v
// Init

VS_EXTERNAL_API(void) VapourSynthPluginInit2(VSPlugin* plugin, const VSPLUGINAPI* vspapi) {
vspapi->configPlugin("com.holywu.addgrain", "grain", "Random noise film grain generator", VS_MAKE_VERSION(9, 0), VAPOURSYNTH_API_VERSION, 0, plugin);
vspapi->configPlugin("com.holywu.addgrain", "grain", "Random noise film grain generator", VS_MAKE_VERSION(10, 0), VAPOURSYNTH_API_VERSION, 0, plugin);
vspapi->registerFunction("Add",
"clip:vnode;"
"var:float:opt;"
Expand Down
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project('AddGrain', '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: '9'
version: '10'
)

cxx = meson.get_compiler('cpp')
Expand All @@ -17,7 +17,7 @@ if gcc_syntax
vapoursynth_dep = dependency('vapoursynth', version: '>=55').partial_dependency(compile_args: true, includes: true)
install_dir = vapoursynth_dep.get_variable(pkgconfig: 'libdir') / 'vapoursynth'
else
vapoursynth_dep = dependency('', required: false)
vapoursynth_dep = []
install_dir = get_option('libdir') / 'vapoursynth'
endif

Expand Down

0 comments on commit 01d8bf4

Please sign in to comment.