Skip to content

Commit

Permalink
version 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tsuyoshizawa committed Jan 20, 2017
1 parent c1e9a4f commit d056def
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ If you'd like to use this with Play Framework, add "play2-oauth2-provider" to li

```scala
libraryDependencies ++= Seq(
"com.nulab-inc" %% "play2-oauth2-provider" % "1.1.0"
"com.nulab-inc" %% "play2-oauth2-provider" % "1.2.0"
)
```

Library version | Play version
--------------- | ------------
1.1.0 | 2.5.x
1.2.0 | 2.5.x
0.16.1 | 2.4.x
0.14.0 | 2.3.x
0.7.4 | 2.2.x
Expand All @@ -40,21 +40,21 @@ Library version | Play version

```scala
libraryDependencies ++= Seq(
"com.nulab-inc" %% "akka-http-oauth2-provider" % "1.1.0"
"com.nulab-inc" %% "akka-http-oauth2-provider" % "1.2.0"
)
```

Library version | Akka HTTP version
--------------- | ------------
1.1.0 | 2.4.x
1.2.0 | 2.4.x

### Other frameworks

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

```scala
libraryDependencies ++= Seq(
"com.nulab-inc" %% "scala-oauth2-core" % "1.1.0"
"com.nulab-inc" %% "scala-oauth2-core" % "1.2.0"
)
```

Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ lazy val scalaOAuth2Core = Project(
settings = scalaOAuth2ProviderSettings ++ Seq(
name := "scala-oauth2-core",
description := "OAuth 2.0 server-side implementation written in Scala",
version := "1.1.1-SNAPSHOT",
version := "1.2.0",
libraryDependencies ++= commonDependenciesInTestScope
)
)
Expand All @@ -68,7 +68,7 @@ lazy val play2OAuth2Provider = Project(
settings = scalaOAuth2ProviderSettings ++ Seq(
name := "play2-oauth2-provider",
description := "Support scala-oauth2-core library on Playframework Scala",
version := "1.1.1-SNAPSHOT",
version := "1.2.0",
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/maven-releases/",
libraryDependencies ++= Seq(
"com.typesafe.play" %% "play" % playVersion % "provided",
Expand All @@ -83,7 +83,7 @@ lazy val akkahttpOAuth2Provider = Project(
settings = scalaOAuth2ProviderSettings ++ Seq(
name := "akka-http-oauth2-provider",
description := "Support scala-oauth2-core library on akka-http",
version := "1.1.1-SNAPSHOT",
version := "1.2.0",
resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/maven-releases/",
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-http-experimental" % akkaVersion,
Expand Down

0 comments on commit d056def

Please sign in to comment.