From f4251bf87db984222b7c3818767cd6a81a8e7c47 Mon Sep 17 00:00:00 2001 From: Michael Brockus <55331536+michaelbadcrumble@users.noreply.github.com> Date: Tue, 17 Sep 2019 12:23:28 -0700 Subject: [PATCH] Remove Unity version number. Removed Unity version number from Meson build scripts so there is one less thing to change when doing updates to this script. --- meson.build | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/meson.build b/meson.build index 6d1ee3d..a2c0a15 100644 --- a/meson.build +++ b/meson.build @@ -12,7 +12,6 @@ project('unity', 'c', - version : '2.4.3', license : 'MIT', meson_version : '>=0.50.0', default_options: [ @@ -67,7 +66,4 @@ endif subdir('src') -unity_dep = declare_dependency( - version: meson.project_version(), - link_with: unity_lib, - include_directories: unity_dir) +unity_dep = declare_dependency(link_with: unity_lib, include_directories: unity_dir)