diff options
author | Damien George <damien.p.george@gmail.com> | 2019-01-26 00:44:35 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-01-26 00:44:35 +1100 |
commit | aba83e66d7d405d64e5788537eade62329f70929 (patch) | |
tree | 86d96c9af052aaa885cb31e1e25fa217524eacb2 /py | |
parent | 6d480f50accb475a67ce53a6cbbaccea603e59ed (diff) | |
download | micropython-aba83e66d7d405d64e5788537eade62329f70929.tar.gz micropython-aba83e66d7d405d64e5788537eade62329f70929.zip |
py/mpconfig.h: Remove parentheses from MICROPY_VERSION_xxx macros.
Otherwise MICROPY_VERSION_STRING includes these parentheses in the string.
Diffstat (limited to 'py')
-rw-r--r-- | py/mpconfig.h | 6 |
1 files 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 ( \ |