8000 py/mpconfig.h: Remove parentheses from MICROPY_VERSION_xxx macros. · harbaum/micropython@aba83e6 · GitHub
[go: up one dir, main page]

Skip to content

Commit aba83e6

Browse files
committed
py/mpconfig.h: Remove parentheses from MICROPY_VERSION_xxx macros.
Otherwise MICROPY_VERSION_STRING includes these parentheses in the string.
1 parent 6d480f5 commit aba83e6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

py/mpconfig.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
#define MICROPY_INCLUDED_PY_MPCONFIG_H
2828

2929
// Current version of MicroPython
30-
#define MICROPY_VERSION_MAJOR (1)
31-
#define MICROPY_VERSION_MINOR (9)
32-
#define MICROPY_VERSION_MICRO (4)
30+
#define MICROPY_VERSION_MAJOR 1
31+
#define MICROPY_VERSION_MINOR 9
32+
#define MICROPY_VERSION_MICRO 4
3333

3434
// Combined version as a 32-bit number for convenience
3535
#define MICROPY_VERSION ( \

0 commit comments

Comments
 (0)
0