Skip to content

Commit b9347c4

Browse files
committed
prepare 2.1.0 release
1 parent 61fae6f commit b9347c4

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,23 +36,23 @@ How to use this library in your project
3636
To use this serializer, you need to do two things:
3737

3838
* Include a dependency on this library into your project:
39-
`libraryDependencies += "io.altoo" %% "akka-kryo-serialization" % "2.0.1"`
39+
`libraryDependencies += "io.altoo" %% "akka-kryo-serialization" % "2.1.0"`
4040

4141
* Register and configure the serializer in your Akka configuration file, e.g. `application.conf`.
4242

4343
We provide several versions of the library:
4444

4545
Version | Akka & Kryo Compatibility | Available Scala Versions | Tested with |
4646
--------|---------------------------|---------------------------|----------------------------------------------------------------------------------------|
47-
v2.1.x | Akka-2.5,2.6 and Kryo-5.0 | 2.12,2.13 | JDK: OpenJdk8,OpenJdk11,OpenJdk15 Scala: 2.12.13,2.13.4 Akka: 2.5.32,2.6.11 |
47+
v2.1.x | Akka-2.5,2.6 and Kryo-5.0 | 2.12,2.13 | JDK: OpenJdk8,OpenJdk11,OpenJdk15 Scala: 2.12.13,2.13.4 Akka: 2.5.32,2.6.12 |
4848
v2.0.x | Akka-2.5,2.6 and Kryo-5.0 | 2.12,2.13 | JDK: OpenJdk8,OpenJdk11,OpenJdk13 Scala: 2.12.12,2.13.3 Akka: 2.5.32,2.6.10 |
4949
v1.1.x | Akka-2.5,2.6 and Kryo-4.0 | 2.12,2.13 | JDK: OpenJdk8,OpenJdk11,OpenJdk13 Scala: 2.12.11,2.13.2 Akka: 2.5.26,2.6.4 |
5050
v1.0.x | Akka-2.5,2.6 and Kryo-4.0 | 2.11,2.12,2.13 | JDK: OpenJdk8,OpenJdk11 Scala: 2.11.12,2.12.10,2.13.1 Akka: 2.5.25,2.6.0-M7 |
5151
For past versions see [Legacy.md](Legacy.md).
5252

5353
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.
5454
* Include:
55-
`libraryDependencies += "io.altoo" %% "akka-kryo-serialization-typed" % "2.1.0-RC1"`
55+
`libraryDependencies += "io.altoo" %% "akka-kryo-serialization-typed" % "2.1.0"`
5656

5757
Note that we use semantic versioning - see [semver.org](https://semver.org/).
5858

@@ -67,7 +67,7 @@ You can find the JARs on [Sonatype's Maven repository](https://repo1.maven.org/m
6767
To use the latest stable release of akka-kryo-serialization in sbt projects you just need to add
6868
this dependency:
6969

70-
`libraryDependencies += "io.altoo" %% "akka-kryo-serialization" % "2.0.1"`
70+
`libraryDependencies += "io.altoo" %% "akka-kryo-serialization" % "2.1.0"`
7171

7272
#### maven projects
7373

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ val mainScalaVersion = "2.13.4"
99
val secondayScalaVersions = Seq("2.12.13")
1010

1111
val kryoVersion = "5.0.3"
12-
val defaultAkkaVersion = "2.6.11"
12+
val defaultAkkaVersion = "2.6.12"
1313
val akkaVersion =
1414
System.getProperty("akka.build.version", defaultAkkaVersion) match {
1515
case "default" => defaultAkkaVersion
@@ -63,7 +63,7 @@ lazy val coreDeps = Seq(
6363
"org.agrona" % "agrona" % "1.8.0", // should match akka-remote/aeron inherited version
6464
"org.lz4" % "lz4-java" % "1.7.1",
6565
"commons-io" % "commons-io" % "2.8.0" % "test",
66-
"org.scala-lang.modules" %% "scala-collection-compat" % "2.3.2"
66+
"org.scala-lang.modules" %% "scala-collection-compat" % "2.4.1"
6767
)
6868
lazy val typedDeps = Seq(
6969
"com.typesafe.akka" %% "akka-actor-typed" % akkaVersion,

0 commit comments

Comments
 (0)