build: use same version as make showversion in meson
authorLuca Boccassi <bluca@debian.org>
Tue, 11 Sep 2018 20:42:35 +0000 (21:42 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 18 Sep 2018 13:50:17 +0000 (15:50 +0200)
make showversion will print 18.11.0-rc0 but Meson sets 18.11-rc0,
causing among other things a difference in the generated documentation.

Fixes: 76b9d9de5c7d ("version: 18.11-rc0")

Signed-off-by: Luca Boccassi <bluca@debian.org>
Acked-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
meson.build

index 2ed1247..5f18172 100644 (file)
@@ -2,7 +2,7 @@
 # Copyright(c) 2017 Intel Corporation
 
 project('DPDK', 'C',
-       version: '18.11-rc0',
+       version: '18.11.0-rc0',
        license: 'BSD',
        default_options: ['buildtype=release', 'default_library=static'],
        meson_version: '>= 0.41'