Skip to content
Snippets Groups Projects
Commit aba83e66 authored by Damien George's avatar Damien George
Browse files

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

Otherwise MICROPY_VERSION_STRING includes these parentheses in the string.
parent 6d480f50
No related branches found
No related tags found
No related merge requests found
......@@ -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 ( \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment