From 95857b086a4ab92a36853b473baf7ac673d3ee73 Mon Sep 17 00:00:00 2001 From: Andre Guedes Date: Wed, 22 Jan 2020 00:57:49 -0800 Subject: [PATCH] build: Update version to MAJOR.MINOR.PATCH format In meson.build, we have the 'version' argument from project() in the format MAJOR.MINOR. This patch changes it so it explicitly shows the PATCH version, following the format MAJOR.MINOR.PATCH. Signed-off-by: Andre Guedes --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index f2ef11f..7a9252f 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'libavtp', 'c', - version: '0.1', + version: '0.1.0', license: 'BSD-3-Clause', )