File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
sbt-dotty/src/dotty/tools/sbtplugin Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ object DottyPlugin extends AutoPlugin {
14
14
// - if this was a settingKey, then this would evaluate even if you don't use it.
15
15
def dottyLatestNightlyBuild : Option [String ] = {
16
16
println(" Fetching latest Dotty nightly version (requires an internet connection)..." )
17
- val Version = """ <version>(0.2 \..*-bin.*)</version>""" .r
17
+ val Version = """ <version>(0.3 \..*-bin.*)</version>""" .r
18
18
val latest = scala.io.Source
19
19
.fromURL(
20
- " http://repo1.maven.org/maven2/ch/epfl/lamp/dotty_0.2 /maven-metadata.xml" )
20
+ " http://repo1.maven.org/maven2/ch/epfl/lamp/dotty_0.3 /maven-metadata.xml" )
21
21
.getLines()
22
22
.collect { case Version (version) => version }
23
23
.toSeq
You can’t perform that action at this time.
0 commit comments