diff --git a/platform/mbed_version.h b/platform/mbed_version.h index 4dbf68f7d3..d489b5a6fb 100644 --- a/platform/mbed_version.h +++ b/platform/mbed_version.h @@ -31,21 +31,21 @@ * * @note 99 is default value for development version (master branch) */ -#define MBED_MAJOR_VERSION 99 +#define MBED_MAJOR_VERSION 5 /** MBED_MINOR_VERSION * Mbed OS minor version * * @note 99 is default value for development version (master branch) */ -#define MBED_MINOR_VERSION 99 +#define MBED_MINOR_VERSION 15 /** MBED_PATCH_VERSION * Mbed OS patch version * * @note 99 is default value for development version (master branch) */ -#define MBED_PATCH_VERSION 99 +#define MBED_PATCH_VERSION 0 #define MBED_ENCODE_VERSION(major, minor, patch) ((major)*10000 + (minor)*100 + (patch))