Skip to content

Commit

Permalink
Merge pull request #104 from luben/0.4.2
Browse files Browse the repository at this point in the history
Prepare for the 0.4.2 release
  • Loading branch information
romix committed Oct 29, 2016
2 parents fe3b40b + f07663a commit 93d1100
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,20 @@ How to use this library in your project

We provide several versions of the libraray:

* v0.5.0 is build against Akka-2.4 and Kryo-4.0 and is available for Scala-2.11
and will be made available for Scala-2.12 when it is released
* v0.4.2 is build against Akka-2.4 and Kryo-3.0 and is available for Scala-2.11
* v0.3.3 is build against Akka-2.3 and in available for Scala-2.10 and 2.11
* v0.4.1 is build against Akka-2.4 and is available for Scala-2.11 and will be made
available for Scala-2.12 when it is released

To use this serializer, you need to do two things:

* Include a dependency on this library into your project:

`libraryDependencies += "com.github.romix.akka" %% "akka-kryo-serialization" % "0.4.1"`
`libraryDependencies += "com.github.romix.akka" %% "akka-kryo-serialization" % "0.5.0"`

or if you need Kryo-3.0 compatibility:

`libraryDependencies += "com.github.romix.akka" %% "akka-kryo-serialization" % "0.4.2"`

or if you are building for Akka-2.3 or Scala-2.10:

Expand Down Expand Up @@ -62,7 +67,7 @@ To use the official release of akka-kryo-serialization, please use the following
<dependency>
<groupId>com.github.romix.akka</groupId>
<artifactId>akka-kryo-serialization_2.11</artifactId>
<version>0.4.1</version>
<version>0.5.0</version>
</dependency>
```

Expand All @@ -78,13 +83,17 @@ If you want to test the latest snapshot of this library, please use the followin
<dependency>
<groupId>com.github.romix.akka</groupId>
<artifactId>akka-kryo-serialization_2.11</artifactId>
<version>0.4.2-SNAPSHOT</version>
<version>0.5.1-SNAPSHOT</version>
</dependency>
```

For your SBT project files, you can use the following coordinates:

"com.github.romix.akka" %% "akka-kryo-serialization" % "0.4.1"
"com.github.romix.akka" %% "akka-kryo-serialization" % "0.5.0"

or

"com.github.romix.akka" %% "akka-kryo-serialization" % "0.4.2"

or

Expand Down

0 comments on commit 93d1100

Please sign in to comment.