Skip to content

Commit 2dc388f

Browse files
committed
[Aptos CLI] release 7.10.2
1 parent 452b44a commit 2dc388f

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

crates/aptos/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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

third_party/move/move-vm/runtime/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

types/src/on_chain_config/aptos_features.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)