From aba83e66d7d405d64e5788537eade62329f70929 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sat, 26 Jan 2019 00:44:35 +1100 Subject: [PATCH] py/mpconfig.h: Remove parentheses from MICROPY_VERSION_xxx macros. Otherwise MICROPY_VERSION_STRING includes these parentheses in the string. --- py/mpconfig.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/py/mpconfig.h b/py/mpconfig.h index 6f1619127c..53f1125bc6 100644 --- a/py/mpconfig.h +++ b/py/mpconfig.h @@ -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 ( \