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

Patch updates #609

Merged
merged 4 commits into from
Aug 30, 2024
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
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ lazy val `anorm-akka` = (project in file("akka"))
)
.dependsOn(`anorm-core`)

lazy val pekkoVer = Def.setting[String]("1.0.2")
lazy val pekkoVer = Def.setting[String]("1.0.3")

lazy val pekkoEnabled = Def.setting[Boolean] {
val v = scalaBinaryVersion.value
Expand Down Expand Up @@ -424,7 +424,7 @@ lazy val `anorm-pekko` = (project in file("pekko"))

// ---

lazy val pgVer = sys.env.get("POSTGRES_VERSION").getOrElse("42.7.2")
lazy val pgVer = sys.env.get("POSTGRES_VERSION").getOrElse("42.7.4")

val playVer = Def.setting[String] {
if (scalaBinaryVersion.value == "2.13" || scalaBinaryVersion.value == "3") "2.9.2"
Expand Down
2 changes: 1 addition & 1 deletion project/Common.scala
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ object Common extends AutoPlugin {
organization := "org.playframework.anorm",
sonatypeProfileName := "org.playframework",
scalaVersion := "2.12.19",
crossScalaVersions := Seq("2.11.12", scalaVersion.value, "2.13.14", "3.4.2"),
crossScalaVersions := Seq("2.11.12", scalaVersion.value, "2.13.14", "3.4.3"),
Compile / unmanagedSourceDirectories ++= {
val sv = scalaVersion.value

Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resolvers ++= DefaultOptions.resolvers(snapshot = true) ++ Seq(
"Tatami Releases".at("https://raw.github.com/cchantep/tatami/master/releases")
)

addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.3")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.4")

addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")

Expand Down
Loading