From 66da91094f18c617908346cc9729ef4c6534871e Mon Sep 17 00:00:00 2001 From: Megazord Date: Wed, 25 Feb 2015 02:01:40 -0300 Subject: [PATCH] Releases version 2.0.1 --- CHANGELOG.md | 4 ++++ README.md | 3 ++- build.sbt | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e226a2c..71feb5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## Version 2.0.1 - 2015/02/25 + +1. PR-54 - Added databaseUrl to allow for direct usage of DATABASE_URL on Heroku + ## Version 2.0.0 - 2015/02/24 This is a full rewrite of this plugin and it is not backwards compatible with previous versions. We did that in order to have: diff --git a/README.md b/README.md index 29164c2..73704aa 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ Here is how HikariCP is working for us: | Version | HikariCP | Play | |--------:|---------:|------:| +| 2.0.1 | 2.3.2 | 2.3.8 | | 2.0.0 | 2.3.2 | 2.3.8 | | 1.5.2 | 2.3.2 | 2.3.8 | | 1.5.1 | 2.2.5 | 2.3.7 | @@ -52,7 +53,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.0" + "com.edulify" %% "play-hikaricp" % "2.0.1" ### Step 2: Disable default `dbplugin` diff --git a/build.sbt b/build.sbt index 40444d6..ffef9cf 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ name := "play-hikaricp" -version := "2.0.0" +version := "2.0.1" scalaVersion := "2.11.5"