diff options
author | Damien George <damien@micropython.org> | 2023-10-16 10:48:36 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2023-10-16 11:25:31 +1100 |
commit | 6967ff3c581a66f73e9f3d78975f47528db39980 (patch) | |
tree | e7794d2ba673ffd49886985461344ee83e0bf954 /py/persistentcode.h | |
parent | 9b63421fb36a9674eda01c1bc111f070b7b81329 (diff) | |
download | micropython-6967ff3c581a66f73e9f3d78975f47528db39980.tar.gz micropython-6967ff3c581a66f73e9f3d78975f47528db39980.zip |
py/persistentcode: Bump .mpy sub-version.
This is required because the previous commit changed the .mpy native ABI.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'py/persistentcode.h')
-rw-r--r-- | py/persistentcode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/persistentcode.h b/py/persistentcode.h index 140a0e7e80..45a268d63f 100644 --- a/py/persistentcode.h +++ b/py/persistentcode.h @@ -35,7 +35,7 @@ // set) must also match MPY_SUB_VERSION. This allows 3 additional updates to // the native ABI per bytecode revision. #define MPY_VERSION 6 -#define MPY_SUB_VERSION 1 +#define MPY_SUB_VERSION 2 // Macros to encode/decode sub-version to/from the feature byte. This replaces // the bits previously used to encode the flags (map caching and unicode) |