From 83f2cef31c127ab4547e7100bc61e07cdf0024d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Wed, 17 Apr 2024 23:38:54 +0200 Subject: [PATCH] meson: Set project version to 0.0.0 To make it clear that it's only a placeholder, as setup.py is the source of truth. --- meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 12b979dc..c7edceb6 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,6 @@ -project('frida-tools', 'c', version: '1.0.0') +project('frida-tools', 'c', + version: '0.0.0', +) subproject('frida-python')