Skip to content

Commit

Permalink
Prepare release 19.10u1
Browse files Browse the repository at this point in the history
Signed-off-by: Pierre Adam <pierre.adam@payintech.com>
  • Loading branch information
PierreAdam committed Oct 15, 2019
1 parent ebc809d commit c6eb8f5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,12 @@ using an older version of Play Framework, think to use the right plugin version.

### Play Framework 2.7.x

**Note:** Since the version 19.10u1, the plugin add support for scala 2.13 and drop the support for scala 2.11.
The last version available for scala 2.11 is the 19.10.

| Plugin | Min. Play Framework | Ebean ORM | Ebean Agent | Ebean Migration |
|---------|---------------------|-----------|-------------|-----------------|
| 19.10u1 | 2.7.3 | 11.45.1 | 11.45.1 | 11.21.1 |
| 19.10 | 2.7.3 | 11.45.1 | 11.45.1 | 11.21.1 |

### Play Framework 2.6.x
Expand Down
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
import com.typesafe.sbt.SbtPgp.autoImportImpl.usePgpKeyHex
import sbt.Keys.{publishMavenStyle, publishTo}
import sbt.inc.Analysis
import interplay.ScalaVersions._
import interplay.ScalaVersions.scala212

val PlayVersion = playVersion(sys.props.getOrElse("play.version", "2.7.3"))
val PlayEnhancerVersion = "1.2.2"
val EbeanVersion = "11.45.1"
val EbeanAgentVersion = "11.45.1"
val EbeanDBMigrationVersion = "11.21.1"
val TypesafeConfigVersion = "1.3.4"
val scala213 = "2.13.0"

lazy val root = project
.in(file("."))
Expand Down Expand Up @@ -70,7 +71,7 @@ lazy val core = project
description := "Play Ebean module",
organization := "com.payintech",
homepage := Some(url(s"https://github.com/payintech/play-ebean")),
crossScalaVersions := Seq(scala211, scala212),
crossScalaVersions := Seq(scala212, scala213),
libraryDependencies ++= playEbeanDeps,
compile in Compile := enhanceEbeanClasses(
(dependencyClasspath in Compile).value,
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("com.typesafe.play" % "interplay" % sys.props.get("interplay.version").getOrElse("2.0.5"))
addSbtPlugin("com.typesafe.play" % "interplay" % sys.props.get("interplay.version").getOrElse("2.0.8"))
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "1.1")
addSbtPlugin("com.eed3si9n" % "sbt-doge" % "0.1.5")
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "19.10-SNAPSHOT"
version in ThisBuild := "19.10u1-SNAPSHOT"

0 comments on commit c6eb8f5

Please sign in to comment.