Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for the 0.4.2 release #104

Merged
merged 1 commit into from
Oct 29, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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