Skip to content

Commit

Permalink
Release 0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
adamw committed Feb 17, 2016
1 parent 445f26a commit 520d5ed
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 13 deletions.
10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -352,12 +352,6 @@ stored in Rails
For `akka` version `2.4.2`:

````scala
libraryDependencies += "com.softwaremill.akka-http-session" %% "core" % "0.2.3"
libraryDependencies += "com.softwaremill.akka-http-session" %% "jwt" % "0.2.3" // optional
````

For `akka-http` version `1.0` (old version, different API):

````scala
libraryDependencies += "com.softwaremill" %% "akka-http-session" % "0.1.4"
libraryDependencies += "com.softwaremill.akka-http-session" %% "core" % "0.2.4"
libraryDependencies += "com.softwaremill.akka-http-session" %% "jwt" % "0.2.4" // optional
````
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import scalariform.formatter.preferences._

lazy val commonSettings = scalariformSettings ++ Seq(
organization := "com.softwaremill.akka-http-session",
version := "0.2.4-SNAPSHOT",
version := "0.2.4",
scalaVersion := "2.11.7",
scalacOptions ++= Seq("-unchecked", "-deprecation"),
ScalariformKeys.preferences := ScalariformKeys.preferences.value
Expand Down Expand Up @@ -38,7 +38,7 @@ lazy val commonSettings = scalariformSettings ++ Seq(

val akkaVersion = "2.4.2"

val scalaTest = "org.scalatest" %% "scalatest" % "2.2.5" % "test"
val scalaTest = "org.scalatest" %% "scalatest" % "2.2.6" % "test"

lazy val rootProject = (project in file("."))
.settings(commonSettings: _*)
Expand All @@ -55,7 +55,7 @@ lazy val core: Project = (project in file("core"))
"com.typesafe.akka" %% "akka-http-core" % akkaVersion,
"com.typesafe.akka" %% "akka-http-experimental" % akkaVersion,
"com.typesafe.akka" %% "akka-http-testkit" % akkaVersion % "test",
"org.scalacheck" %% "scalacheck" % "1.12.5" % "test",
"org.scalacheck" %% "scalacheck" % "1.13.0" % "test",
scalaTest
)
)
Expand All @@ -76,6 +76,6 @@ lazy val example: Project = (project in file("example"))
publishArtifact := false,
libraryDependencies ++= Seq(
"com.typesafe.scala-logging" %% "scala-logging-slf4j" % "2.1.2",
"ch.qos.logback" % "logback-classic" % "1.1.3"
"ch.qos.logback" % "logback-classic" % "1.1.5"
))
.dependsOn(core, jwt)
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.8
sbt.version=0.13.9

0 comments on commit 520d5ed

Please sign in to comment.