From a6207cadad0acd1876f436dc6baeddf46c42af06 Mon Sep 17 00:00:00 2001 From: adbridge Date: Wed, 24 Jun 2020 16:41:27 +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 3a44ba0de22..03b190c0bad 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 6 +#define MBED_MAJOR_VERSION 6 /** MBED_MINOR_VERSION * Mbed OS minor version * * @note 99 is default value for development version (master branch) */ -#define MBED_MINOR_VERSION 0 +#define MBED_MINOR_VERSION 1 /** MBED_PATCH_VERSION * Mbed OS patch version * * @note 99 is default value for development version (master branch) */ -#define MBED_PATCH_VERSION 0 +#define MBED_PATCH_VERSION 0 #define MBED_ENCODE_VERSION(major, minor, patch) ((major)*10000 + (minor)*100 + (patch))