Skip to content

Commit ac13cc2

Browse files
authored
Update version to 0.3.0
1 parent 54d7089 commit ac13cc2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sbt-dotty/src/dotty/tools/sbtplugin/DottyPlugin.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ object DottyPlugin extends AutoPlugin {
1414
// - if this was a settingKey, then this would evaluate even if you don't use it.
1515
def dottyLatestNightlyBuild: Option[String] = {
1616
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
1818
val latest = scala.io.Source
1919
.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")
2121
.getLines()
2222
.collect { case Version(version) => version }
2323
.toSeq

0 commit comments

Comments
 (0)