Skip to content
This repository has been archived by the owner on Feb 10, 2021. It is now read-only.

Commit

Permalink
0.6.2 updates
Browse files Browse the repository at this point in the history
  • Loading branch information
joscha committed Jun 29, 2014
1 parent e880608 commit ab36d71
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,10 @@ The included sample application shows how to use all of those providers.

## Versions
* **TRUNK** [not released in the repository, yet]
* Fancy contributing something? :-)
* **0.6.2-SNAPSHOT** [2014-06-29]
* Add Basic Auth provider (thanks @fhars)
* Add SPNEGO Auth provider (thanks @fhars)
* Add SPNEGO Auth provider (thanks @fhars)
* **0.6.1-SNAPSHOT** [2014-06-29]
* Add Scala 2.10.x binary to repository
* Travis testing against Scala 2.10.x
Expand Down
2 changes: 1 addition & 1 deletion code/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ scalaVersion := "2.11.1"

crossScalaVersions := Seq("2.10.4", "2.11.1")

version := "0.6.1-SNAPSHOT"
version := "0.6.2-SNAPSHOT"

publishTo <<= (version) { version: String =>
if (version.trim.endsWith("SNAPSHOT")) Some(Resolver.file("file", new File( "../repo/snapshots" )))
Expand Down
2 changes: 1 addition & 1 deletion samples/java/play-authenticate-simple-oauth/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ scalaVersion := "2.11.1"
version := "1.0-SNAPSHOT"

val appDependencies = Seq(
"com.feth" %% "play-authenticate" % "0.6.1-SNAPSHOT",
"com.feth" %% "play-authenticate" % "0.6.2-SNAPSHOT",
javaCore,
cache,
javaWs,
Expand Down
2 changes: 1 addition & 1 deletion samples/java/play-authenticate-usage/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version := "1.0-SNAPSHOT"
val appDependencies = Seq(
"be.objectify" %% "deadbolt-java" % "2.3.0-RC1",
// Comment the next line for local development of the Play Authentication core:
"com.feth" %% "play-authenticate" % "0.6.1-SNAPSHOT",
"com.feth" %% "play-authenticate" % "0.6.2-SNAPSHOT",
"postgresql" % "postgresql" % "9.1-901-1.jdbc4",
javaCore,
cache,
Expand Down

0 comments on commit ab36d71

Please sign in to comment.