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

feat: move v2 as default in the move cmd #309

Merged
merged 1 commit into from
Nov 22, 2024
Merged
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
4 changes: 2 additions & 2 deletions cmd/move/move.go
Original file line number Diff line number Diff line change
Expand Up @@ -578,8 +578,8 @@ the 'tests' directory`)
cmd.Flags().Bool(flagVerbose, false, "Print additional diagnostics if available")
cmd.Flags().Bool(flagSkipFetchLatestGitDeps, false, "Skip fetching latest git dependencies")
cmd.Flags().Uint32(flagBytecodeVersion, 0, "Specify the version of the bytecode the compiler is going to emit")
cmd.Flags().String(flagCompilerVersion, "1", "Specify the version of the compiler to use")
cmd.Flags().String(flagLanguageVersion, "1", "Specify the version of the language to use")
cmd.Flags().String(flagCompilerVersion, "2", "Specify the version of the compiler to use")
cmd.Flags().String(flagLanguageVersion, "2", "Specify the version of the language to use")
cmd.Flags().String(flagNamedAddresses, "", "Named addresses to use in compilation. ex: --named-addresses 'name_1=0x1,name_2=0x2'")
}

Expand Down
Loading