Skip to content

Commit

Permalink
Merge pull request #337 from mkurz/update_versions
Browse files Browse the repository at this point in the history
[6.2.x] Update versions + prepare 6.2.0 final release
  • Loading branch information
mkurz authored Dec 12, 2022
2 parents 6cc34b5 + 30eae1d commit 37df88b
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The Play Ebean plugin supports several different versions of Play and Ebean.

| Plugin version | Play version | Ebean version |
|------------------------------------------------------------------------------------------------------------|--------------|---------------|
| 6.2.0-RC7<br>**! [Important notes](https://github.com/playframework/play-ebean/releases/tag/6.2.0-RC4) !** | 2.8.8+ | 12.16.1 |
| 6.2.0<br>**! [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 |
| 5.0.1    | 2.7.0   | 11.32.x       |
Expand Down
2 changes: 1 addition & 1 deletion docs/manual/working/javaGuide/main/sql/code/ebean.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//#add-sbt-plugin
addSbtPlugin("com.typesafe.play" % "sbt-play-ebean" % "6.2.0-RC7")
addSbtPlugin("com.typesafe.play" % "sbt-play-ebean" % "6.2.0")
//#add-sbt-plugin

//#enable-plugin
Expand Down
2 changes: 1 addition & 1 deletion docs/project/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Copyright (C) Lightbend Inc. <https://www.lightbend.com>
#

sbt.version=1.7.1
sbt.version=1.7.2
2 changes: 1 addition & 1 deletion docs/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ 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.8.16"))
addSbtPlugin("com.typesafe.play" % "play-docs-sbt-plugin" % sys.props.getOrElse("play.version", "2.8.18"))
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ object Dependencies {

object ScalaVersions {
val scala212 = "2.12.16"
val scala213 = "2.13.8"
val scala213 = "2.13.10"
}

object Versions {
val play: String = "2.8.16"
val play: String = "2.8.18"
val ebean = "12.16.1"
val typesafeConfig = "1.4.2"
}
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# Copyright (C) Lightbend Inc. <https://www.lightbend.com>
#

sbt.version=1.7.1
sbt.version=1.7.2
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.7.0")
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.9.0")

addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.0")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.1")

addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")

addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.10")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.11")
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ Test / javaSource := baseDirectory.value / "tests"

resolvers ++= DefaultOptions.resolvers(snapshot = true)

libraryDependencies += "com.h2database" % "h2" % "2.1.212"
libraryDependencies += "com.h2database" % "h2" % "2.1.214"
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ scalaVersion := "2.12.16"

resolvers ++= DefaultOptions.resolvers(snapshot = true)

libraryDependencies += "com.h2database" % "h2" % "2.1.212"
libraryDependencies += "com.h2database" % "h2" % "2.1.214"

0 comments on commit 37df88b

Please sign in to comment.