Skip to content

Commit 38c9595

Browse files
authored
Merge pull request #3330 from dotty-staging/0.5.x
Update version to 0.5.0
2 parents 10f5c3f + 151026d commit 38c9595

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

project/Build.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ object Build {
4141
val dottyOrganization = "ch.epfl.lamp"
4242
val dottyGithubUrl = "https://github.com/lampepfl/dotty"
4343
val dottyVersion = {
44-
val baseVersion = "0.4.0"
44+
val baseVersion = "0.5.0"
4545
val isNightly = sys.env.get("NIGHTLYBUILD") == Some("yes")
4646
val isRelease = sys.env.get("RELEASEBUILD") == Some("yes")
4747
if (isNightly)
@@ -854,7 +854,7 @@ object Build {
854854

855855

856856
sbtPlugin := true,
857-
version := "0.1.6-SNAPSHOT",
857+
version := "0.1.6",
858858
ScriptedPlugin.scriptedSettings,
859859
ScriptedPlugin.sbtTestDirectory := baseDirectory.value / "sbt-test",
860860
ScriptedPlugin.scriptedLaunchOpts += "-Dplugin.version=" + version.value,

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.4\..*-bin.*)</version>""".r
17+
val Version = """ <version>(0.5\..*-bin.*)</version>""".r
1818
val latest = scala.io.Source
1919
.fromURL(
20-
"http://repo1.maven.org/maven2/ch/epfl/lamp/dotty_0.4/maven-metadata.xml")
20+
"http://repo1.maven.org/maven2/ch/epfl/lamp/dotty_0.5/maven-metadata.xml")
2121
.getLines()
2222
.collect { case Version(version) => version }
2323
.toSeq

0 commit comments

Comments
 (0)