From c949793907249d91e921f59bc7dab13445f2b756 Mon Sep 17 00:00:00 2001 From: Hadis-Fard Date: Tue, 4 Jul 2017 16:17:53 -0700 Subject: [PATCH] updated the version file --- source/shared/version.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/shared/version.h b/source/shared/version.h index 90b323cb..ba205053 100644 --- a/source/shared/version.h +++ b/source/shared/version.h @@ -33,9 +33,9 @@ // Semantic versioning pre-release // for stable releases should be empty -// "rc" for release candidates -// "preview" for ETP -#define SEMVER_PRERELEASE "RC1" +// "-RC" for release candidates +// "-preview" for ETP +#define SEMVER_PRERELEASE // Semantic versioning build metadata, build meta data is not counted in precedence order. #define SEMVER_BUILDMETA @@ -48,7 +48,7 @@ #define VER_APIVERSION_STR STRINGIFY( SQLVERSION_MAJOR ) "." STRINGIFY( SQLVERSION_MINOR ) "." STRINGIFY( SQLVERSION_PATCH ) // Remove "-" if SEMVER_PRERELEASE is empty (for stable releases) -#define VER_FILEVERSION_STR VER_APIVERSION_STR "-" SEMVER_PRERELEASE SEMVER_BUILDMETA +#define VER_FILEVERSION_STR VER_APIVERSION_STR SEMVER_PRERELEASE SEMVER_BUILDMETA #define _FILEVERSION SQLVERSION_MAJOR,SQLVERSION_MINOR,SQLVERSION_PATCH,SQLVERSION_BUILD // PECL package version macros (can't have '-' or '+')