Skip to content

Commit 2f33bce

Browse files
committed
version 0.14.0
1 parent 39918a5 commit 2f33bce

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ If you'd like to use this with Playframework, add "play2-oauth2-provider" to lib
2424

2525
```scala
2626
libraryDependencies ++= Seq(
27-
"com.nulab-inc" %% "play2-oauth2-provider" % "0.13.3"
27+
"com.nulab-inc" %% "play2-oauth2-provider" % "0.14.0"
2828
)
2929
```
3030

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

4343
```scala
4444
libraryDependencies ++= Seq(
45-
"com.nulab-inc" %% "scala-oauth2-core" % "0.13.3"
45+
"com.nulab-inc" %% "scala-oauth2-core" % "0.14.0"
4646
)
4747
```
4848

@@ -73,6 +73,8 @@ class MyDataHandler extends DataHandler[User] {
7373

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

76+
def deleteAuthCode(code: String): Future[Unit] = ???
77+
7678
def findAccessToken(token: String): Future[Option[AccessToken]] = ???
7779

7880
def findAuthInfoByAccessToken(accessToken: AccessToken): Future[Option[AuthInfo[User]]] = ???

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Keys._
44
object ScalaOAuth2Build extends Build {
55

66
lazy val _organization = "com.nulab-inc"
7-
lazy val _version = "0.14.0-SNAPSHOT"
7+
lazy val _version = "0.14.0"
88
lazy val _playVersion = "2.3.7"
99

1010
val _scalaVersion = "2.10.5"

0 commit comments

Comments
 (0)