diff --git a/README.md b/README.md index d71d2dc..2b65647 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -*akka-jwt* (based on [spray-jwt](https://github.com/kikuomax/spray-jwt)) is a set of utilities for [akka-http](http://doc.akka.io/docs/akka-stream-and-http-experimental/current/scala/http/), which perform signing and verification of a JSON Web Token (JWT). +*akka-jwt* (based on [spray-jwt](https://github.com/kikuomax/spray-jwt)) is a set of utilities for [akka-http](http://doc.akka.io/docs/akka-http/current/scala.html), which perform signing and verification of a JSON Web Token (JWT). Getting Started =============== @@ -7,7 +7,7 @@ Add the following dependency to your `build.sbt`, ``` resolvers += "witi83 at bintray" at "http://dl.bintray.com/witi83/maven" -libraryDependencies += "com.github.witi83" %% "akka-jwt" % "1.2.0" +libraryDependencies += "com.github.witi83" %% "akka-jwt" % "1.3.0" ``` Example diff --git a/build.sbt b/build.sbt index f6628f1..19e5c2d 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ name := "akka-jwt" organization := "com.github.witi83" -version := "1.2.0" +version := "1.3.0" scalaVersion := "2.11.8" scalacOptions := Seq("-deprecation", @@ -18,8 +18,8 @@ scalacOptions := Seq("-deprecation", libraryDependencies ++= { Seq( - "com.typesafe.akka" %% "akka-http-experimental" % "2.4.11", - "com.nimbusds" % "nimbus-jose-jwt" % "4.27" + "com.typesafe.akka" %% "akka-http" % "10.0.1", + "com.nimbusds" % "nimbus-jose-jwt" % "4.33" ) }