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 aws-crt to 0.33.10 #382

Merged
merged 11 commits into from
Jan 29, 2025
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.8.5
version = 3.8.6
preset = default
runner.dialect = scala3
maxColumn = 120
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ lazy val commonSettings = Seq(
mockito % Test,
scalaTest % Test
),
scalaVersion := "3.6.2",
scalaVersion := "3.6.3",
version := version.value,
organization := "uk.gov.nationalarchives",
scmInfo := Some(
Expand Down
6 changes: 3 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import sbt._

object Dependencies {
private val awsSdkVersion = "2.30.2"
private val awsSdkVersion = "2.30.7"
private val circeVersion = "0.14.10"
private lazy val scalaTestVersion = "3.2.19"

lazy val awsCrt = "software.amazon.awssdk.crt" % "aws-crt" % "0.33.9"
lazy val catsCore = "org.typelevel" %% "cats-core" % "2.12.0"
lazy val awsCrt = "software.amazon.awssdk.crt" % "aws-crt" % "0.33.10"
lazy val catsCore = "org.typelevel" %% "cats-core" % "2.13.0"
lazy val catsEffect = "org.typelevel" %% "cats-effect" % "3.5.7"
lazy val circeGeneric = "io.circe" %% "circe-generic" % circeVersion
lazy val circeParser = "io.circe" %% "circe-parser" % circeVersion
Expand Down