diff --git a/README.md b/README.md index cf3e6b4..a67f55a 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ How to use this library in your project To use this serializer, you need to do two things: * Include a dependency on this library into your project: - `libraryDependencies += "io.altoo" %% "akka-kryo-serialization" % "2.4.0"` + `libraryDependencies += "io.altoo" %% "akka-kryo-serialization" % "2.4.3"` * Register and configure the serializer in your Akka configuration file, e.g. `application.conf`. @@ -55,7 +55,7 @@ For past versions see [Legacy.md](Legacy.md). From 2.1.0 onward we also provide support for akka-typed. This is done as a separate artifact so that the standard does not pull all the typed akka dependencies. * Include: - `libraryDependencies += "io.altoo" %% "akka-kryo-serialization-typed" % "2.4.0"` + `libraryDependencies += "io.altoo" %% "akka-kryo-serialization-typed" % "2.4.3"` Version 2.2.0 requires JDK 11 or higher in favor of optimizations using ByteBuffer. @@ -72,11 +72,11 @@ You can find the JARs on [Sonatype's Maven repository](https://repo1.maven.org/m To use the latest stable release of akka-kryo-serialization in sbt projects you just need to add this dependency: -`libraryDependencies += "io.altoo" %% "akka-kryo-serialization" % "2.4.0"` +`libraryDependencies += "io.altoo" %% "akka-kryo-serialization" % "2.4.3"` To use with Akka 2.5 (or older versions of Akka 2.6) you need to exclude transitive dependencies to preven unintended inclusion of Akka 2.6: -`libraryDependencies += "io.altoo" %% "akka-kryo-serialization" % "2.4.0" excludeAll (ExclusionRule("com.typesafe.akka", "akka-actor_2.13"), ExclusionRule("org.agrona", "agrona"))` +`libraryDependencies += "io.altoo" %% "akka-kryo-serialization" % "2.4.3" excludeAll (ExclusionRule("com.typesafe.akka", "akka-actor_2.13"), ExclusionRule("org.agrona", "agrona"))` #### maven projects