File tree 3 files changed +4
-4
lines changed
sbt-dotty/src/dotty/tools/sbtplugin
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -56,14 +56,14 @@ object Build {
56
56
val referenceVersion = " 0.27.0-RC1"
57
57
58
58
val baseVersion = " 3.0.0-M1"
59
- val baseSbtDottyVersion = " 0.4.3 "
59
+ val baseSbtDottyVersion = " 0.4.4 "
60
60
61
61
// Versions used by the vscode extension to create a new project
62
62
// This should be the latest published releases.
63
63
// TODO: Have the vscode extension fetch these numbers from the Internet
64
64
// instead of hardcoding them ?
65
65
val publishedDottyVersion = referenceVersion
66
- val publishedSbtDottyVersion = " 0.4.2 "
66
+ val publishedSbtDottyVersion = " 0.4.3 "
67
67
68
68
/** scala-library version required to compile Dotty.
69
69
*
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ object DottyPlugin extends AutoPlugin {
49
49
else fetchSource(s " $major. ${minor.toInt - 1 }" )
50
50
}
51
51
val (source1, majorVersion) = fetchSource(majorVersionFromWebsite)
52
- val Version = s " <version>( $majorVersion\\ . .*-bin.*)</version>" .r
52
+ val Version = s " <version>( $majorVersion.*-bin.*)</version> " .r
53
53
val nightly = source1
54
54
.getLines()
55
55
.collect { case Version (version) => version }
You can’t perform that action at this time.
0 commit comments