Skip to content

Commit d056def

Browse files
committed
version 1.2.0
1 parent c1e9a4f commit d056def

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ If you'd like to use this with Play Framework, add "play2-oauth2-provider" to li
2525

2626
```scala
2727
libraryDependencies ++= Seq(
28-
"com.nulab-inc" %% "play2-oauth2-provider" % "1.1.0"
28+
"com.nulab-inc" %% "play2-oauth2-provider" % "1.2.0"
2929
)
3030
```
3131

3232
Library version | Play version
3333
--------------- | ------------
34-
1.1.0 | 2.5.x
34+
1.2.0 | 2.5.x
3535
0.16.1 | 2.4.x
3636
0.14.0 | 2.3.x
3737
0.7.4 | 2.2.x
@@ -40,21 +40,21 @@ Library version | Play version
4040

4141
```scala
4242
libraryDependencies ++= Seq(
43-
"com.nulab-inc" %% "akka-http-oauth2-provider" % "1.1.0"
43+
"com.nulab-inc" %% "akka-http-oauth2-provider" % "1.2.0"
4444
)
4545
```
4646

4747
Library version | Akka HTTP version
4848
--------------- | ------------
49-
1.1.0 | 2.4.x
49+
1.2.0 | 2.4.x
5050

5151
### Other frameworks
5252

5353
Add `scala-oauth2-core` instead. In this case, you need to implement your own OAuth provider working with web framework you use.
5454

5555
```scala
5656
libraryDependencies ++= Seq(
57-
"com.nulab-inc" %% "scala-oauth2-core" % "1.1.0"
57+
"com.nulab-inc" %% "scala-oauth2-core" % "1.2.0"
5858
)
5959
```
6060

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ lazy val scalaOAuth2Core = Project(
5757
settings = scalaOAuth2ProviderSettings ++ Seq(
5858
name := "scala-oauth2-core",
5959
description := "OAuth 2.0 server-side implementation written in Scala",
60-
version := "1.1.1-SNAPSHOT",
60+
version := "1.2.0",
6161
libraryDependencies ++= commonDependenciesInTestScope
6262
)
6363
)
@@ -68,7 +68,7 @@ lazy val play2OAuth2Provider = Project(
6868
settings = scalaOAuth2ProviderSettings ++ Seq(
6969
name := "play2-oauth2-provider",
7070
description := "Support scala-oauth2-core library on Playframework Scala",
71-
version := "1.1.1-SNAPSHOT",
71+
version := "1.2.0",
7272
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/maven-releases/",
7373
libraryDependencies ++= Seq(
7474
"com.typesafe.play" %% "play" % playVersion % "provided",
@@ -83,7 +83,7 @@ lazy val akkahttpOAuth2Provider = Project(
8383
settings = scalaOAuth2ProviderSettings ++ Seq(
8484
name := "akka-http-oauth2-provider",
8585
description := "Support scala-oauth2-core library on akka-http",
86-
version := "1.1.1-SNAPSHOT",
86+
version := "1.2.0",
8787
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/maven-releases/",
8888
libraryDependencies ++= Seq(
8989
"com.typesafe.akka" %% "akka-http-experimental" % akkaVersion,

0 commit comments

Comments
 (0)