Skip to content
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

Update sbt to 1.3.0 #905

Merged
merged 3 commits into from Sep 7, 2019
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion build.sbt
Expand Up @@ -165,7 +165,11 @@ lazy val interfaces = project
libraryDependencies ++= List(
V.lsp4j
),
crossVersion := CrossVersion.disabled
crossVersion := CrossVersion.disabled,
javacOptions in (Compile / doc) ++= List(
"-tag",
"implNote:a:Implementation Note:"
)
)

lazy val mtags = project
Expand Down
Expand Up @@ -58,7 +58,7 @@ case class SbtBuildTool(version: String) extends BuildTool {
workspace: AbsolutePath
): Option[String] = SbtDigest.current(workspace)
override val minimumVersion: String = "0.13.17"
override val recommendedVersion: String = "1.2.8"
override val recommendedVersion: String = "1.3.0"

private def writeSbtMetalsPlugin(config: MetalsServerConfig): Unit = {
val plugins =
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
@@ -1 +1 @@
sbt.version=1.2.8
sbt.version=1.3.0
4 changes: 2 additions & 2 deletions sbt
Expand Up @@ -6,8 +6,8 @@

set -o pipefail

declare -r sbt_release_version="1.2.8"
declare -r sbt_unreleased_version="1.2.8"
declare -r sbt_release_version="1.3.0"
declare -r sbt_unreleased_version="1.3.0"

declare -r latest_213="2.13.0"
declare -r latest_212="2.12.9"
Expand Down