Skip to content

sbt-dotty: Require sbt >= 1.4, bump version to 0.5.0-SNAPSHOT #10773

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ object Build {
val referenceVersion = "3.0.0-RC1-bin-20201202-67d9790-NIGHTLY"

val baseVersion = "3.0.0-M3"
val baseSbtDottyVersion = "0.4.7"
val baseSbtDottyVersion = "0.5.0"

// Versions used by the vscode extension to create a new project
// This should be the latest published releases.
Expand Down
2 changes: 1 addition & 1 deletion sbt-dotty/src/dotty/tools/sbtplugin/DottyPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ object DottyPlugin extends AutoPlugin {
override val globalSettings: Seq[Def.Setting[_]] = Seq(
onLoad in Global := onLoad.in(Global).value.andThen { state =>

val requiredVersion = ">=1.3.6"
val requiredVersion = ">=1.4.4"

val sbtV = sbtVersion.value
if (!VersionNumber(sbtV).matchesSemVer(SemanticSelector(requiredVersion)))
Expand Down