From 2c349932f83b7aa4be1fa28d77d4892d2095f837 Mon Sep 17 00:00:00 2001 From: Jonathan Thomas Date: Fri, 15 Mar 2019 13:13:49 -0500 Subject: [PATCH] Bumping version to 0.1.8 (SO remains 6) --- include/Version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Version.h b/include/Version.h index 545b390..d894cb6 100644 --- a/include/Version.h +++ b/include/Version.h @@ -36,7 +36,7 @@ #define OPENSHOT_AUDIO_VERSION_MAJOR 0; /// Major version number is incremented when huge features are added or improved. #define OPENSHOT_AUDIO_VERSION_MINOR 1; /// Minor version is incremented when smaller (but still very important) improvements are added. -#define OPENSHOT_AUDIO_VERSION_BUILD 7; /// Build number is incremented when minor bug fixes and less important improvements are added. +#define OPENSHOT_AUDIO_VERSION_BUILD 8; /// Build number is incremented when minor bug fixes and less important improvements are added. #define OPENSHOT_AUDIO_VERSION_SO 6; /// Shared object version number. This increments any time the API and ABI changes (so old apps will no longer link) #define OPENSHOT_AUDIO_VERSION_MAJOR_MINOR STRINGIZE(OPENSHOT_AUDIO_VERSION_MAJOR) "." STRINGIZE(OPENSHOT_AUDIO_VERSION_MINOR); /// A string of the "Major.Minor" version #define OPENSHOT_AUDIO_VERSION_ALL STRINGIZE(OPENSHOT_AUDIO_VERSION_MAJOR) "." STRINGIZE(OPENSHOT_AUDIO_VERSION_MINOR) "." STRINGIZE(OPENSHOT_AUDIO_VERSION_BUILD); /// A string of the entire version "Major.Minor.Build"