Skip to content

Commit

Permalink
Merge pull request #43 from guardian/mc-update-dependencies-sep-2024
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
mchv authored Sep 4, 2024
2 parents 2eee6c4 + aa89a5d commit 07748c2
Show file tree
Hide file tree
Showing 18 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ lazy val sharedSettings = Seq(
publishConfiguration := publishConfiguration.value.withOverwrite(true)
)

val Brotli4jVersion = "1.16.0"
val Brotli4jVersion = "1.17.0"
lazy val common = project
.settings(
name:="brotli4s",
Expand Down Expand Up @@ -54,7 +54,7 @@ lazy val akka = project.dependsOn(common)

)

val PekkoVersion = "1.0.2"
val PekkoVersion = "1.0.3"
lazy val pekko = project.dependsOn(common)
.settings(
name:="pekko-stream-brotli",
Expand Down Expand Up @@ -146,9 +146,9 @@ lazy val `play-v29` = project
description := "A brotli filter module for Play 2.9",
crossScalaVersions := Seq(Scala213, Scala3),
libraryDependencies ++= Seq(
"com.typesafe.play" %% "play" % "2.9.3" % Provided,
"com.typesafe.play" %% "play" % "2.9.5" % Provided,
"com.typesafe.play" %% "filters-helpers" % "2.9.0-M6" % Test,
"com.typesafe.play" %% "play-specs2" % "2.9.3" % Test,
"com.typesafe.play" %% "play-specs2" % "2.9.5" % Test,
),

artifactPomMetadataSettings
Expand All @@ -162,9 +162,9 @@ lazy val `play-v29` = project
description := "A brotli filter module for Play 3",
crossScalaVersions := Seq(Scala213, Scala3),
libraryDependencies ++= Seq(
"org.playframework" %% "play" % "3.0.3" % Provided,
"org.playframework" %% "play-filters-helpers" % "3.0.3" % Test,
"org.playframework" %% "play-specs2" % "3.0.3" % Test,
"org.playframework" %% "play" % "3.0.5" % Provided,
"org.playframework" %% "play-filters-helpers" % "3.0.5" % Test,
"org.playframework" %% "play-specs2" % "3.0.5" % Test,
),

artifactPomMetadataSettings
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed common/lib/native-osx-aarch64-1.16.0.jar
Binary file not shown.
Binary file added common/lib/native-osx-aarch64-1.17.0.jar
Binary file not shown.
Binary file removed common/lib/native-osx-x86_64-1.16.0.jar
Binary file not shown.
Binary file added common/lib/native-osx-x86_64-1.17.0.jar
Binary file not shown.
Binary file removed common/lib/native-windows-aarch64-1.16.0.jar
Binary file not shown.
Binary file added common/lib/native-windows-aarch64-1.17.0.jar
Binary file not shown.
Binary file removed common/lib/native-windows-x86_64-1.16.0.jar
Binary file not shown.
Binary file added common/lib/native-windows-x86_64-1.17.0.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.10.0
sbt.version=1.10.1
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.10.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.11.3")
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.0.15")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.1.3")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.2.0")
2 changes: 1 addition & 1 deletion scripts/update-lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

cd ../common/lib/

version='1.16.0'
version='1.17.0'

for platform in 'native-osx-aarch64' \
'native-osx-x86_64' \
Expand Down

0 comments on commit 07748c2

Please sign in to comment.