Skip to content

Commit 5e8a387

Browse files
authored
Merge pull request #2852 from lampepfl/DarkDimius-patch-1
Update version to 0.3.0
2 parents 54d7089 + b42d317 commit 5e8a387

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ object Build {
3737
val dottyOrganization = "ch.epfl.lamp"
3838
val dottyGithubUrl = "https://github.com/lampepfl/dotty"
3939
val dottyVersion = {
40-
val baseVersion = "0.2.0-RC1"
40+
val baseVersion = "0.3.0"
4141
val isNightly = sys.env.get("NIGHTLYBUILD") == Some("yes")
4242
val isRelease = sys.env.get("RELEASEBUILD") == Some("yes")
4343
if (isNightly)

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)