Commit b05cbeb 1 parent df1c4a3 commit b05cbeb Copy full SHA for b05cbeb
File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -1164,7 +1164,7 @@ pub struct MovePackageDir {
1164
1164
1165
1165
/// ...or --compiler COMPILER_VERSION
1166
1166
/// Specify the version of the compiler.
1167
- /// Defaults to the latest stable compiler version
1167
+ /// Defaults to the latest stable compiler version (at least 2)
1168
1168
#[ clap( long, value_parser = clap:: value_parser!( CompilerVersion ) ,
1169
1169
alias = "compiler" ,
1170
1170
default_value = LATEST_STABLE_COMPILER_VERSION ,
@@ -1175,7 +1175,7 @@ pub struct MovePackageDir {
1175
1175
1176
1176
/// ...or --language LANGUAGE_VERSION
1177
1177
/// Specify the language version to be supported.
1178
- /// Defaults to the latest stable language version
1178
+ /// Defaults to the latest stable language version (at least 2)
1179
1179
#[ clap( long, value_parser = clap:: value_parser!( LanguageVersion ) ,
1180
1180
alias = "language" ,
1181
1181
default_value = LATEST_STABLE_LANGUAGE_VERSION ,
Original file line number Diff line number Diff line change @@ -909,7 +909,6 @@ impl IncludedArtifacts {
909
909
experiments. append ( & mut move_options. experiments . clone ( ) ) ;
910
910
experiments. append ( & mut more_experiments) ;
911
911
912
- // TODO(#14441): Remove `None |` here when we update default CompilerVersion
913
912
if matches ! (
914
913
move_options. compiler_version,
915
914
Option :: None | Some ( CompilerVersion :: V1 )
You can’t perform that action at this time.
0 commit comments