From 432c1ec39a066dd7dcd8afc7a472df2db274f304 Mon Sep 17 00:00:00 2001 From: Zurab Kvachadze Date: Sat, 1 Nov 2025 17:59:59 +0100 Subject: [PATCH 1/2] meson.build: Set the correct version 0.10.1 -> 0.11.0 Signed-off-by: Zurab Kvachadze --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 88cbc7ca9..1c178513c 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'quickjs-ng', 'c', - version: '0.10.1', + version: '0.11.0', default_options: [ 'c_std=gnu11,c11', 'warning_level=3', From 82ecdd016780327c157aee016ac3f37e522da659 Mon Sep 17 00:00:00 2001 From: Zurab Kvachadze Date: Sat, 1 Nov 2025 17:41:37 +0100 Subject: [PATCH 2/2] meson.build: Do not hardcode default_library=static During the build, the default library can be overridden via the -Ddefault_library=type flag. Presetting this key in meson.build makes life harder for distributions which almost always want to build shared libraries. Those requiring static libraries can always force that via the aforementioned flag. Signed-off-by: Zurab Kvachadze --- meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/meson.build b/meson.build index 1c178513c..a37844fee 100644 --- a/meson.build +++ b/meson.build @@ -5,7 +5,6 @@ project( default_options: [ 'c_std=gnu11,c11', 'warning_level=3', - 'default_library=static', ], license: 'MIT', license_files: 'LICENSE',