Skip to content

Commit a8fd9c0

Browse files
committed
version 0.17.0
1 parent a31effd commit a8fd9c0

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[The OAuth 2.0](http://tools.ietf.org/html/rfc6749) server-side implementation written in Scala.
44

5-
This provides OAuth 2.0 server-side functionality and supporting function for [Play Framework](http://www.playframework.com/). Play Framework 2.2, 2.3 and 2.4 are now supported.
5+
This provides OAuth 2.0 server-side functionality and supporting function for [Play Framework](http://www.playframework.com/). Play Framework 2.2, 2.3, 2.4 and 2.5 are now supported.
66

77
The idea of this library originally comes from [oauth2-server](https://github.com/yoichiro/oauth2-server) which is Java implementation of OAuth 2.0.
88

@@ -21,6 +21,14 @@ and an access token type called [Bearer](http://tools.ietf.org/html/rfc6750).
2121

2222
If you'd like to use this with Play Framework, add "play2-oauth2-provider" to library dependencies of your project.
2323

24+
### For Play Framework 2.5
25+
26+
```scala
27+
libraryDependencies ++= Seq(
28+
"com.nulab-inc" %% "play2-oauth2-provider" % "0.17.0"
29+
)
30+
```
31+
2432
### For Play Framework 2.4
2533

2634
```scala

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import com.typesafe.sbt.SbtScalariform._
55
object ScalaOAuth2Build extends Build {
66

77
lazy val _organization = "com.nulab-inc"
8-
lazy val _version = "0.16.2-SNAPSHOT"
8+
lazy val _version = "0.17.0"
99
lazy val _playVersion = "2.5.0"
1010

1111
val _scalaVersion = "2.11.7"

0 commit comments

Comments
 (0)