Skip to content

Commit 0fc0533

Browse files
committed
version 0.5.0
1 parent c535191 commit 0fc0533

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
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 [Playframework](http://www.playframework.com/). Playframework 2.1 and 2.2 are now supported.
5+
This provides OAuth 2.0 server-side functionality and supporting function for [Playframework](http://www.playframework.com/). Playframework 2.2 is 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

@@ -22,14 +22,14 @@ If you'd like to use this with Playframework, add "play2-oauth2-provider" to lib
2222

2323
```scala
2424
libraryDependencies ++= Seq(
25-
"com.nulab-inc" %% "play2-oauth2-provider" % "0.4.0"
25+
"com.nulab-inc" %% "play2-oauth2-provider" % "0.5.0"
2626
)
2727
```
2828

2929
Otherwise, add "scala-oauth2-core" instead. In this case, you need to implement your own OAuth provider working with web framework you use.
3030
```scala
3131
libraryDependencies ++= Seq(
32-
"com.nulab-inc" %% "scala-oauth2-core" % "0.4.0"
32+
"com.nulab-inc" %% "scala-oauth2-core" % "0.5.0"
3333
)
3434
```
3535

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.4.0"
7+
lazy val _version = "0.5.0"
88
lazy val _playVersion = "2.2.0"
99

1010
val _scalaVersion = "2.10.3"

0 commit comments

Comments
 (0)