Skip to content

Commit d08dc3c

Browse files
Merge pull request #10773 from dotty-staging/bump-sbt-dotty-0.5
sbt-dotty: Require sbt >= 1.4, bump version to 0.5.0-SNAPSHOT
2 parents 0ad0dc8 + 932ca11 commit d08dc3c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ object Build {
5656
val referenceVersion = "3.0.0-RC1-bin-20201202-67d9790-NIGHTLY"
5757

5858
val baseVersion = "3.0.0-M3"
59-
val baseSbtDottyVersion = "0.4.7"
59+
val baseSbtDottyVersion = "0.5.0"
6060

6161
// Versions used by the vscode extension to create a new project
6262
// This should be the latest published releases.

sbt-dotty/src/dotty/tools/sbtplugin/DottyPlugin.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ object DottyPlugin extends AutoPlugin {
174174
override val globalSettings: Seq[Def.Setting[_]] = Seq(
175175
onLoad in Global := onLoad.in(Global).value.andThen { state =>
176176

177-
val requiredVersion = ">=1.3.6"
177+
val requiredVersion = ">=1.4.4"
178178

179179
val sbtV = sbtVersion.value
180180
if (!VersionNumber(sbtV).matchesSemVer(SemanticSelector(requiredVersion)))

0 commit comments

Comments
 (0)