Skip to content

Commit

Permalink
Update various library dependencies.
Browse files Browse the repository at this point in the history
Today I closed the old dependency update PRs in this repo, hoping that
a manual trigger of the steward would re-open them, and merge them automatically,
after our the changes from 066e820. But what happens instead was that no new
dependency updates PRs are created, because the steward detects the closed PRs
and that blocks is somehow.

For that reason, these versions need manual update now. They should henceforth
get back to being updated automatically.

Signed-off-by: Ignacio Lucero <ignacio.lucero@moia.io>
  • Loading branch information
houcros committed Jan 10, 2023
1 parent 71a7a48 commit c0f86d3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.5.9
version = 3.6.1
runner.dialect = scala213
align.preset = more
maxColumn = 140
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ lazy val library = new {
val scalaCheck = "1.17.0"
val scalaTest = "3.2.15"
val scalaTestPlusCheck = "3.2.2.0"
val scapeGoat = "1.4.15"
val scapeGoat = "1.4.17"
}

val scalaPB = "com.thesamet.scalapb" %% "scalapb-runtime" % Version.scalaPB
Expand All @@ -66,7 +66,7 @@ lazy val commonSettings = Seq.concat(

lazy val compilerSettings = Seq(
scalaVersion := crossScalaVersions.value.head,
crossScalaVersions := List("2.13.8", "2.12.16"),
crossScalaVersions := List("2.13.10", "2.12.17"),
Compile / packageBin / mappings += (ThisBuild / baseDirectory).value / "LICENSE" -> "LICENSE",
scalacOptions ++= (CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, 12)) => scalacOptions_2_12
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.7.1
sbt.version=1.7.3
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Formatting in scala
// See .scalafmt.conf for configuration details.
// Formatting takes place before the project is compiled.
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")

// Use git in sbt, show git prompt and use versions from git.
// sbt> git <your git command>
Expand All @@ -21,7 +21,7 @@ addSbtPlugin("com.typesafe.sbt" % "sbt-license-report" % "1.2.0")
// Uses protoc to generate code from proto files. This SBT plugin is meant supercede sbt-protobuf and sbt-scalapb.
addSbtPlugin("com.thesamet" % "sbt-protoc" % "1.0.6")

libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.11.11"
libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.11.12"

addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.9.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.15")
Expand Down

0 comments on commit c0f86d3

Please sign in to comment.