From cf855221ed396c1b18ec5c8683f3aefd3757a8f0 Mon Sep 17 00:00:00 2001 From: Zekun Wang Date: Wed, 30 Oct 2024 20:11:24 -0400 Subject: [PATCH 1/4] typo --- crates/aptos/src/common/types.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/aptos/src/common/types.rs b/crates/aptos/src/common/types.rs index 581a0caaeec3e..64a55c21cc90c 100644 --- a/crates/aptos/src/common/types.rs +++ b/crates/aptos/src/common/types.rs @@ -1154,7 +1154,7 @@ pub struct MovePackageDir { /// ...or --bytecode BYTECODE_VERSION /// Specify the version of the bytecode the compiler is going to emit. /// Defaults to `6`, or `7` if language version 2 is selected - /// (through `--move-2` or `--language_version=2`), . + /// (through `--move-2` or `--language-version=2`), . #[clap( long, default_value_if("move_2", "true", "7"), @@ -1182,7 +1182,7 @@ pub struct MovePackageDir { pub language_version: Option, /// Select bytecode, language version, and compiler to support Move 2: - /// Same as `--bytecode_version=7 --language_version=2.1 --compiler_version=2.0` + /// Same as `--bytecode-version=7 --language-version=2.1 --compiler-version=2.0` #[clap(long, verbatim_doc_comment)] pub move_2: bool, } From 6c6a71e13cdd8b84dabc5a8fe3cf5813b69c383f Mon Sep 17 00:00:00 2001 From: Zekun Wang Date: Thu, 31 Oct 2024 19:56:28 -0400 Subject: [PATCH 2/4] update changelog --- crates/aptos/CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/aptos/CHANGELOG.md b/crates/aptos/CHANGELOG.md index ff469c04b0232..a2667fbaf1701 100644 --- a/crates/aptos/CHANGELOG.md +++ b/crates/aptos/CHANGELOG.md @@ -4,6 +4,9 @@ All notable changes to the Aptos CLI will be captured in this file. This project ## Unreleased +## [4.3.1] - 2024/10/31 +- Fix typos in `aptos move compile` help text. + ## [4.3.0] - 2024/10/30 - Allow for setting large-packages module for chunking publish mode with `--large-packages-module-address` - [`Fix`] Remove unwraps to make outputs go through regular error handling From f508d9cbe7a7dbc4d45731a93e779551fbcaa825 Mon Sep 17 00:00:00 2001 From: Zekun Wang Date: Thu, 31 Oct 2024 21:08:33 -0400 Subject: [PATCH 3/4] fix changelog --- crates/aptos/CHANGELOG.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/crates/aptos/CHANGELOG.md b/crates/aptos/CHANGELOG.md index a2667fbaf1701..10aebd95fe7fa 100644 --- a/crates/aptos/CHANGELOG.md +++ b/crates/aptos/CHANGELOG.md @@ -3,9 +3,7 @@ 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/). ## Unreleased - -## [4.3.1] - 2024/10/31 -- Fix typos in `aptos move compile` help text. +- Fix typos in `aptos move compile` help text.**** ## [4.3.0] - 2024/10/30 - Allow for setting large-packages module for chunking publish mode with `--large-packages-module-address` From 94f0661381a42e10925181b8c03c30c633940c31 Mon Sep 17 00:00:00 2001 From: Zekun Wang Date: Thu, 31 Oct 2024 21:09:01 -0400 Subject: [PATCH 4/4] fix typo --- crates/aptos/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/aptos/CHANGELOG.md b/crates/aptos/CHANGELOG.md index 10aebd95fe7fa..b9cf75816b2ce 100644 --- a/crates/aptos/CHANGELOG.md +++ b/crates/aptos/CHANGELOG.md @@ -3,7 +3,7 @@ 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/). ## Unreleased -- Fix typos in `aptos move compile` help text.**** +- Fix typos in `aptos move compile` help text. ## [4.3.0] - 2024/10/30 - Allow for setting large-packages module for chunking publish mode with `--large-packages-module-address`