py/mpconfig.h: Remove parentheses from MICROPY_VERSION_xxx macros.

Otherwise MICROPY_VERSION_STRING includes these parentheses in the string.
This commit is contained in:
Damien George 2019-01-26 00:44:35 +11:00
parent 6d480f50ac
commit aba83e66d7
1 changed files with 3 additions and 3 deletions

View File

@ -27,9 +27,9 @@
#define MICROPY_INCLUDED_PY_MPCONFIG_H #define MICROPY_INCLUDED_PY_MPCONFIG_H
// Current version of MicroPython // Current version of MicroPython
#define MICROPY_VERSION_MAJOR (1) #define MICROPY_VERSION_MAJOR 1
#define MICROPY_VERSION_MINOR (9) #define MICROPY_VERSION_MINOR 9
#define MICROPY_VERSION_MICRO (4) #define MICROPY_VERSION_MICRO 4
// Combined version as a 32-bit number for convenience // Combined version as a 32-bit number for convenience
#define MICROPY_VERSION ( \ #define MICROPY_VERSION ( \