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

View file

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