From 7e94a4806f50d29a02acf7e5e33e751db35a9894 Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Thu, 31 Aug 2017 11:18:26 -0700 Subject: [PATCH] version: add "v" to version string For example, VERSION_STRING will now be "SPDK v17.10-pre" instead of the current "SPDK 17.10-pre". This matches the release tags that we use, and it will generally be more obvious that it's a version. Change-Id: I0770124991b18e328f3c47f22e88798950aa8b26 Signed-off-by: Daniel Verkamp Reviewed-on: https://review.gerrithub.io/376669 Tested-by: SPDK Automated Test System Reviewed-by: Jim Harris Reviewed-by: John Kariuki Reviewed-by: Changpeng Liu Reviewed-by: Ben Walker --- include/spdk/version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdk/version.h b/include/spdk/version.h index f0c80bd27..59100f738 100644 --- a/include/spdk/version.h +++ b/include/spdk/version.h @@ -101,7 +101,7 @@ * Human-readable version string. */ #define SPDK_VERSION_STRING \ - "SPDK " \ + "SPDK v" \ SPDK_VERSION_MAJOR_STRING \ SPDK_VERSION_MINOR_STRING \ SPDK_VERSION_PATCH_STRING \