Skip to content

Commit f4a59c8

Browse files
committed
0.4.0 release
1 parent e03d047 commit f4a59c8

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ session data that is sent to the client, and verified when the session token is
3737
* support for [JWT](http://jwt.io/)
3838
* refresh token support (e.g. to implement "remember me")
3939
* CSRF tokens support
40+
* Java & Scala APIs
4041

4142
## Example
4243

@@ -79,6 +80,8 @@ You can try out a simple example by running `com.softwaremill.example.Example` i
7980
opening [http://localhost:8080](http://localhost:8080), or you can just take a look
8081
[at the source](https://github.com/softwaremill/akka-http-session/blob/master/example/src/main/scala/com/softwaremill/example/Example.scala).
8182

83+
There's also a [Java version available](https://github.com/softwaremill/akka-http-session/blob/master/example/src/main/java/com/softwaremill/example/JavaExample.java).
84+
8285
## `SessionManager` & configuration
8386

8487
All directives require an implicit instance of a `SessionManager[T]`, which can be created by providing a server
@@ -350,9 +353,9 @@ stored in Rails
350353

351354
## Using from SBT
352355

353-
For `akka` version `2.4.11`, `akka-http` version `10.0.0`:
356+
For `akka-http` version `10.0.3`:
354357

355358
````scala
356-
libraryDependencies += "com.softwaremill.akka-http-session" %% "core" % "0.3.0"
357-
libraryDependencies += "com.softwaremill.akka-http-session" %% "jwt" % "0.3.0" // optional
359+
libraryDependencies += "com.softwaremill.akka-http-session" %% "core" % "0.4.0"
360+
libraryDependencies += "com.softwaremill.akka-http-session" %% "jwt" % "0.4.0" // optional
358361
````

build.sbt

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import scalariform.formatter.preferences._
22

33
lazy val commonSettings = scalariformSettings ++ Seq(
44
organization := "com.softwaremill.akka-http-session",
5-
version := "0.3.0",
5+
version := "0.4.0",
66
scalaVersion := "2.11.8",
7-
crossScalaVersions := Seq(scalaVersion.value, "2.12.0"),
7+
crossScalaVersions := Seq(scalaVersion.value, "2.12.1"),
88
scalacOptions ++= Seq("-unchecked", "-deprecation"),
99
ScalariformKeys.preferences := ScalariformKeys.preferences.value
1010
.setPreference(DoubleIndentClassDeclaration, true)
@@ -39,7 +39,7 @@ lazy val commonSettings = scalariformSettings ++ Seq(
3939
homepage := Some(new java.net.URL("http://softwaremill.com"))
4040
)
4141

42-
val akkaHttpVersion = "10.0.0"
42+
val akkaHttpVersion = "10.0.3"
4343

4444
val scalaTest = "org.scalatest" %% "scalatest" % "3.0.1" % "test"
4545

0 commit comments

Comments
 (0)