Skip to content

Commit

Permalink
version 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tsuyoshizawa committed May 18, 2015
1 parent 39918a5 commit 2f33bce
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ If you'd like to use this with Playframework, add "play2-oauth2-provider" to lib

```scala
libraryDependencies ++= Seq(
"com.nulab-inc" %% "play2-oauth2-provider" % "0.13.3"
"com.nulab-inc" %% "play2-oauth2-provider" % "0.14.0"
)
```

Expand All @@ -42,7 +42,7 @@ Add "scala-oauth2-core" instead. In this case, you need to implement your own OA

```scala
libraryDependencies ++= Seq(
"com.nulab-inc" %% "scala-oauth2-core" % "0.13.3"
"com.nulab-inc" %% "scala-oauth2-core" % "0.14.0"
)
```

Expand Down Expand Up @@ -73,6 +73,8 @@ class MyDataHandler extends DataHandler[User] {

def findClientUser(clientCredential: ClientCredential, scope: Option[String]): Future[Option[User]] = ???

def deleteAuthCode(code: String): Future[Unit] = ???

def findAccessToken(token: String): Future[Option[AccessToken]] = ???

def findAuthInfoByAccessToken(accessToken: AccessToken): Future[Option[AuthInfo[User]]] = ???
Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Keys._
object ScalaOAuth2Build extends Build {

lazy val _organization = "com.nulab-inc"
lazy val _version = "0.14.0-SNAPSHOT"
lazy val _version = "0.14.0"
lazy val _playVersion = "2.3.7"

val _scalaVersion = "2.10.5"
Expand Down

0 comments on commit 2f33bce

Please sign in to comment.