File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
third_party/move/move-vm/runtime/src
types/src/on_chain_config Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ All notable changes to the Aptos CLI will be captured in this file. This project
44
55# Unreleased
66
7+ ## [ 7.10.2]
8+ - Fix backward compatibility issue of enum-based option module
9+
710## [ 7.10.1]
811- Add support into Move 2.2 for builtin constant ` __COMPILE_FOR_TESTING__ `
912- Update the default version of move formatter to 1.3.7
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ impl Default for VMConfig {
7575 enable_enum_option : true ,
7676 enable_layout_caches : true ,
7777 propagate_dependency_limit_error : true ,
78- enable_framework_for_option : true ,
78+ enable_framework_for_option : false ,
7979 }
8080 }
8181}
Original file line number Diff line number Diff line change @@ -258,7 +258,6 @@ impl FeatureFlag {
258258 FeatureFlag :: ENABLE_TRUSTED_CODE ,
259259 FeatureFlag :: ENABLE_ENUM_OPTION ,
260260 FeatureFlag :: VM_BINARY_FORMAT_V9 ,
261- FeatureFlag :: ENABLE_FRAMEWORK_FOR_OPTION ,
262261 ]
263262 }
264263}
You can’t perform that action at this time.
0 commit comments