From 0d863c81f90becffe72aa6eda68104ef4349b132 Mon Sep 17 00:00:00 2001 From: Matthias Kurz Date: Wed, 25 Oct 2023 21:10:20 +0200 Subject: [PATCH] Play 2.9.0 --- README.md | 2 ++ docs/project/plugins.sbt | 2 +- project/Dependencies.scala | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 150baf97..fd579a3b 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,8 @@ The Play Ebean plugin supports several different versions of Play and Ebean. | Plugin version | Play version | Ebean version | |------------------------------------------------------------------------------------------------------------|--------------|---------------| +| 8.0.0 | 3.0.0+ | 13.17.3 | +| 7.0.0 | 2.9.0+ | 13.17.3 | | 6.2.0
**! [Important notes](https://github.com/playframework/play-ebean/releases/tag/6.2.0-RC4) !** | 2.8.18+ | 12.16.1 | | 6.0.0 | 2.8.1 | 11.45.1 | | 5.0.2 | 2.7.0 | 11.39.x | diff --git a/docs/project/plugins.sbt b/docs/project/plugins.sbt index f3cac60e..6cae0f81 100644 --- a/docs/project/plugins.sbt +++ b/docs/project/plugins.sbt @@ -6,7 +6,7 @@ lazy val sbtPlayEbean = ProjectRef(Path.fileProperty("user.dir").getParentFile, resolvers ++= DefaultOptions.resolvers(snapshot = true) -addSbtPlugin("com.typesafe.play" % "play-docs-sbt-plugin" % sys.props.getOrElse("play.version", "2.9.0-RC3")) +addSbtPlugin("com.typesafe.play" % "play-docs-sbt-plugin" % sys.props.getOrElse("play.version", "2.9.0")) addSbtPlugin("com.lightbend.sbt" % "sbt-java-formatter" % "0.8.0") diff --git a/project/Dependencies.scala b/project/Dependencies.scala index e1304e6e..ecd804a3 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -15,7 +15,7 @@ object Dependencies { } object Versions { - val play: String = "2.9.0-RC3" + val play: String = "2.9.0" val ebean = "13.17.3" val ebeanJakarta = s"$ebean-jakarta" val typesafeConfig = "1.4.3"