From 79c7fa1f9aebe9aad1b09876e764d8a2176fbc4a Mon Sep 17 00:00:00 2001 From: adbridge Date: Wed, 4 Sep 2019 10:14:45 +0100 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 007c57a46e..bbbdc85523 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 14 /** 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))