Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bugfix] [Cli] Fix typo #15132

Merged
merged 5 commits into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions crates/aptos/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@fEst1ck, do we plan to release 4.3.1 for this typo? If not, you could add it under Unreleased.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No. Thanks for pointing out

- 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
Expand Down
4 changes: 2 additions & 2 deletions crates/aptos/src/common/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down Expand Up @@ -1182,7 +1182,7 @@ pub struct MovePackageDir {
pub language_version: Option<LanguageVersion>,

/// 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,
}
Expand Down
Loading