From 38ef13c9a414927ee98f127572dfd40969a2d120 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B8=CC=86=20=D0=90?= =?UTF-8?q?=D1=88=D1=83=D1=80=D0=BE=D0=BA?= Date: Tue, 10 Jan 2017 10:48:36 +0700 Subject: [PATCH] Bump versions: akka-http-experimental to stable akka-http 10.0.1, nimbus-jose-jwt to 4.33 --- README.md | 4 ++-- build.sbt | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) 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" ) }