Skip to content

Commit edb4d84

Browse files
committed
version 0.8.0
1 parent 1cbbf81 commit edb4d84

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,29 @@ and an access token type called [Bearer](http://tools.ietf.org/html/rfc6750).
2020

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

23+
### For Playframework 2.3
24+
25+
```scala
26+
libraryDependencies ++= Seq(
27+
"com.nulab-inc" %% "play2-oauth2-provider" % "0.8.0"
28+
)
29+
```
30+
31+
### For Playframework 2.2
32+
2333
```scala
2434
libraryDependencies ++= Seq(
2535
"com.nulab-inc" %% "play2-oauth2-provider" % "0.7.2"
2636
)
2737
```
2838

29-
Otherwise, add "scala-oauth2-core" instead. In this case, you need to implement your own OAuth provider working with web framework you use.
39+
### Other frameworks
40+
41+
Add "scala-oauth2-core" instead. In this case, you need to implement your own OAuth provider working with web framework you use.
3042

3143
```scala
3244
libraryDependencies ++= Seq(
33-
"com.nulab-inc" %% "scala-oauth2-core" % "0.7.2"
45+
"com.nulab-inc" %% "scala-oauth2-core" % "0.8.0"
3446
)
3547
```
3648

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.8.0-SNAPSHOT"
7+
lazy val _version = "0.8.0"
88
lazy val _playVersion = "2.3.2"
99

1010
val _scalaVersion = "2.10.4"

0 commit comments

Comments
 (0)