From d1c7208356b220b857d6714801901616dfda786a Mon Sep 17 00:00:00 2001 From: adbridge Date: Fri, 29 Nov 2019 15:22:10 +0000 Subject: [PATCH] Update Mbed version block --- platform/mbed_version.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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))