From 3b4349a46cd7e66463750d6a6998c1572a339227 Mon Sep 17 00:00:00 2001 From: Joscha Feth Date: Fri, 7 Nov 2014 01:25:01 +0100 Subject: [PATCH] Prep for 0.6.8 release --- README.md | 8 +++++--- samples/java/play-authenticate-simple-oauth/build.sbt | 2 +- samples/java/play-authenticate-usage/build.sbt | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6e296760..d82c0dee 100644 --- a/README.md +++ b/README.md @@ -68,9 +68,11 @@ There is also a [sample application using Play!Authenticate with MongoDB](https: ## Versions * **TRUNK** [not released in the repository, yet] * Fancy contributing something? :-) - * throw an exception if resolver is missing - * Upgrade to bootstrap3 (thanks @joslash, @enalmada) - * remove obsolete resolvers +* **0.6.8** [2014-11-07] + * Throw an exception if `Resolver` is not defined + * Upgrade sample app to bootstrap 3.2 (thanks @joslash, @enalmada) + * Remove obsolete repository resolvers + * Fix NPE on cache clear during ongoing OAuth flow * **0.6.7** [2014-11-02] * Maintenance release * **0.6.6** [2014-10-29] diff --git a/samples/java/play-authenticate-simple-oauth/build.sbt b/samples/java/play-authenticate-simple-oauth/build.sbt index beb0b9a7..3e40086c 100644 --- a/samples/java/play-authenticate-simple-oauth/build.sbt +++ b/samples/java/play-authenticate-simple-oauth/build.sbt @@ -7,7 +7,7 @@ scalaVersion := "2.11.2" version := "1.0-SNAPSHOT" val appDependencies = Seq( - "com.feth" %% "play-authenticate" % "0.6.7", + "com.feth" %% "play-authenticate" % "0.6.8", javaCore, cache, javaWs, diff --git a/samples/java/play-authenticate-usage/build.sbt b/samples/java/play-authenticate-usage/build.sbt index 28db37d4..e1597f75 100644 --- a/samples/java/play-authenticate-usage/build.sbt +++ b/samples/java/play-authenticate-usage/build.sbt @@ -9,7 +9,7 @@ version := "1.0-SNAPSHOT" val appDependencies = Seq( "be.objectify" %% "deadbolt-java" % "2.3.2", // Comment the next line for local development of the Play Authentication core: - "com.feth" %% "play-authenticate" % "0.6.7", + "com.feth" %% "play-authenticate" % "0.6.8", "postgresql" % "postgresql" % "9.1-901-1.jdbc4", javaCore, cache,