Skip to content

Commit

Permalink
Releases version 2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
megazord committed Apr 15, 2015
1 parent 1faea47 commit 972321d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
@@ -1,6 +1,11 @@
# Changelog

## Version 2.0.2 - 2015/03/26
## Version 2.0.4 - 2015/04/14

1. PR-60 - Add sensible pool names by default
2. Updates HikariCP to version 2.3.6

## Version 2.0.3 - 2015/03/26

1. GH-59 - Allow play to start when a configured db is unavailable
2. Upgrade HikariCP to version 2.3.5
Expand Down
5 changes: 3 additions & 2 deletions README.md
@@ -1,6 +1,6 @@
# HikariCP Plugin for 2.3.x

This plugin works with `2.3.x` of PlayFramework and uses version `2.3.5` of HikariCP.
This plugin works with `2.3.x` of PlayFramework and uses version `2.3.6` of HikariCP.

Note, it can be made to work with Play `2.2.x` of the PlayFramework, but it requires changing the dependencies as the current build relies on the Play `2.3.x` plugin. Please, see the versions table below to see which version of Play is supported.

Expand All @@ -22,6 +22,7 @@ Here is how HikariCP is working for us:

| Version | HikariCP | Play |
|--------:|---------:|------:|
| 2.0.4 | 2.3.6 | 2.3.8 |
| 2.0.3 | 2.3.5 | 2.3.8 |
| 2.0.2 | 2.3.2 | 2.3.8 |
| 2.0.1 | 2.3.2 | 2.3.8 |
Expand Down Expand Up @@ -55,7 +56,7 @@ There are just a few steps to properly configure the plugin:

Add the following dependency to your `project/build.sbt` or `project/Build.scala`:

"com.edulify" %% "play-hikaricp" % "2.0.3"
"com.edulify" %% "play-hikaricp" % "2.0.4"

### Step 2: Disable default `dbplugin`

Expand Down
4 changes: 2 additions & 2 deletions build.sbt
@@ -1,6 +1,6 @@
name := "play-hikaricp"

version := "2.0.3"
version := "2.0.4"

scalaVersion := "2.11.6"

Expand All @@ -10,7 +10,7 @@ lazy val root = (project in file(".")).enablePlugins(PlayScala)

libraryDependencies ++= Seq(
jdbc,
"com.zaxxer" % "HikariCP" % "2.3.5",
"com.zaxxer" % "HikariCP" % "2.3.6",
"com.googlecode.usc" % "jdbcdslog" % "1.0.6.2",
"com.h2database" % "h2" % "1.4.186" % "test"
)
Expand Down

0 comments on commit 972321d

Please sign in to comment.