Merge pull request #13054 from ARMmbed/update_version

Update mbed version number
pull/13064/head mbed-os-6.0.0
Martin Kojtal 2020-06-02 15:47:21 +02:00 committed by GitHub
commit 165be79392
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -31,21 +31,21 @@
*
* @note 99 is default value for development version (master branch)
*/
#define MBED_MAJOR_VERSION 99
#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 99
#define MBED_MINOR_VERSION 0
/** 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))