diff --git a/project/Build.scala b/project/Build.scala index 88ae2503993a..965429c2d3b0 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -37,7 +37,7 @@ object Build { val dottyOrganization = "ch.epfl.lamp" val dottyGithubUrl = "https://github.com/lampepfl/dotty" val dottyVersion = { - val baseVersion = "0.2.0-RC1" + val baseVersion = "0.3.0" val isNightly = sys.env.get("NIGHTLYBUILD") == Some("yes") val isRelease = sys.env.get("RELEASEBUILD") == Some("yes") if (isNightly) diff --git a/sbt-dotty/src/dotty/tools/sbtplugin/DottyPlugin.scala b/sbt-dotty/src/dotty/tools/sbtplugin/DottyPlugin.scala index ce916a6e6ba0..b11569305132 100644 --- a/sbt-dotty/src/dotty/tools/sbtplugin/DottyPlugin.scala +++ b/sbt-dotty/src/dotty/tools/sbtplugin/DottyPlugin.scala @@ -14,10 +14,10 @@ object DottyPlugin extends AutoPlugin { // - if this was a settingKey, then this would evaluate even if you don't use it. def dottyLatestNightlyBuild: Option[String] = { println("Fetching latest Dotty nightly version (requires an internet connection)...") - val Version = """ (0.2\..*-bin.*)""".r + val Version = """ (0.3\..*-bin.*)""".r val latest = scala.io.Source .fromURL( - "http://repo1.maven.org/maven2/ch/epfl/lamp/dotty_0.2/maven-metadata.xml") + "http://repo1.maven.org/maven2/ch/epfl/lamp/dotty_0.3/maven-metadata.xml") .getLines() .collect { case Version(version) => version } .toSeq