summaryrefslogtreecommitdiff
path: root/py/persistentcode.h
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2024-03-25 12:25:01 +1100
committerDamien George <damien@micropython.org>2024-03-28 16:18:26 +1100
commitbdbc869f9ea200c0d28b2bc7bfb60acd9d884e1b (patch)
tree04cf0f88058d4144244c072605427707e7dd9b3e /py/persistentcode.h
parent8b0efde927afb8409314ddf16f16a78b44b93d7a (diff)
py/persistentcode: Bump .mpy sub-version to 6.3.
This is required because the .mpy native ABI was changed by the introduction of `mp_proto_fun_t`, see commits: - 416465d81e911b088836f4e7c37fac2bc0f67917 - 5e3006f1172d0eabbbefeb3268dfb942ec7cf9cd - e2ff00e81113d7a3f32f860652017644b5d68bf1 And three `mp_binary` functions were added to `mp_fun_table` in commit d2276f0d41c2fa66a224725fdb2411846c91cf1a. Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'py/persistentcode.h')
-rw-r--r--py/persistentcode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/persistentcode.h b/py/persistentcode.h
index 45a268d63..d2b310f24 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 2
+#define MPY_SUB_VERSION 3
// 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)