File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
sbt-dotty/src/dotty/tools/sbtplugin Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ object Build {
41
41
val dottyOrganization = " ch.epfl.lamp"
42
42
val dottyGithubUrl = " https://github.com/lampepfl/dotty"
43
43
val dottyVersion = {
44
- val baseVersion = " 0.4 .0"
44
+ val baseVersion = " 0.5 .0"
45
45
val isNightly = sys.env.get(" NIGHTLYBUILD" ) == Some (" yes" )
46
46
val isRelease = sys.env.get(" RELEASEBUILD" ) == Some (" yes" )
47
47
if (isNightly)
@@ -854,7 +854,7 @@ object Build {
854
854
855
855
856
856
sbtPlugin := true ,
857
- version := " 0.1.6-SNAPSHOT " ,
857
+ version := " 0.1.6" ,
858
858
ScriptedPlugin .scriptedSettings,
859
859
ScriptedPlugin .sbtTestDirectory := baseDirectory.value / " sbt-test" ,
860
860
ScriptedPlugin .scriptedLaunchOpts += " -Dplugin.version=" + version.value,
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.4 \..*-bin.*)</version>""" .r
17
+ val Version = """ <version>(0.5 \..*-bin.*)</version>""" .r
18
18
val latest = scala.io.Source
19
19
.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" )
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