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

[move-2024] Change default TOML to be 2024 beta #16697

Merged
merged 2 commits into from
Mar 20, 2024
Merged
Show file tree
Hide file tree
Changes from all 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: 1 addition & 2 deletions external-crates/move/crates/move-cli/src/base/new.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@ impl New {
w,
r#"[package]
name = "{name}"

# edition = "2024.alpha" # To use the Move 2024 edition, currently in alpha
edition = "2024.beta" # edition = "legacy" to use legacy (pre-2024) Move
# license = "" # e.g., "MIT", "GPL", "Apache 2.0"
# authors = ["..."] # e.g., ["Joe Smith (joesmith@noemail.com)", "John Snow (johnsnow@noemail.com)"]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ Command `new P1`:
External Command `cat P1/Move.toml`:
[package]
name = "P1"

# edition = "2024.alpha" # To use the Move 2024 edition, currently in alpha
edition = "2024.beta" # edition = "legacy" to use legacy (pre-2024) Move
# license = "" # e.g., "MIT", "GPL", "Apache 2.0"
# authors = ["..."] # e.g., ["Joe Smith (joesmith@noemail.com)", "John Snow (johnsnow@noemail.com)"]

Expand Down Expand Up @@ -40,8 +39,7 @@ Command `new P2 -p other_dir`:
External Command `cat other_dir/Move.toml`:
[package]
name = "P2"

# edition = "2024.alpha" # To use the Move 2024 edition, currently in alpha
edition = "2024.beta" # edition = "legacy" to use legacy (pre-2024) Move
# license = "" # e.g., "MIT", "GPL", "Apache 2.0"
# authors = ["..."] # e.g., ["Joe Smith (joesmith@noemail.com)", "John Snow (johnsnow@noemail.com)"]

Expand Down
Loading