File tree 2 files changed +3
-3
lines changed
sbt-dotty/src/dotty/tools/sbtplugin
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ object Build {
37
37
val dottyOrganization = " ch.epfl.lamp"
38
38
val dottyGithubUrl = " https://github.com/lampepfl/dotty"
39
39
val dottyVersion = {
40
- val baseVersion = " 0.2.0-RC1 "
40
+ val baseVersion = " 0.3.0 "
41
41
val isNightly = sys.env.get(" NIGHTLYBUILD" ) == Some (" yes" )
42
42
val isRelease = sys.env.get(" RELEASEBUILD" ) == Some (" yes" )
43
43
if (isNightly)
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