Skip to content

Commit 44953af

Browse files
authored
[cli] Update CLI to use latest formatter and mutation testing tool (#18373)
1 parent 3318621 commit 44953af

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

crates/aptos/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
All notable changes to the Aptos CLI will be captured in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and the format set out by [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
44

55
# Unreleased
6+
- Updated default version of formatter to 1.4.5 and move mutation tests to 2.2.0.
67

78
## [7.13.0]
89
- Set language version 2.3 as stable, which adds support for signed integer types.

crates/aptos/src/update/move_mutation_test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use self_update::update::ReleaseUpdate;
1313
use std::path::PathBuf;
1414

1515
const MUTATION_TEST_BINARY_NAME: &str = "move-mutation-test";
16-
const TARGET_MUTATION_TEST_VERSION: &str = "2.0.0";
16+
const TARGET_MUTATION_TEST_VERSION: &str = "2.2.0";
1717

1818
const MUTATION_TEST_EXE_ENV: &str = "MUTATION_TEST_EXE";
1919
#[cfg(target_os = "windows")]

crates/aptos/src/update/movefmt.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use self_update::update::ReleaseUpdate;
1313
use std::path::PathBuf;
1414

1515
const FORMATTER_BINARY_NAME: &str = "movefmt";
16-
const TARGET_FORMATTER_VERSION: &str = "1.3.7";
16+
const TARGET_FORMATTER_VERSION: &str = "1.4.5";
1717

1818
const FORMATTER_EXE_ENV: &str = "FORMATTER_EXE";
1919
#[cfg(target_os = "windows")]

0 commit comments

Comments
 (0)