From 9670a3a4fe4e8aa3e24cacf6b27a110e42282158 Mon Sep 17 00:00:00 2001 From: Thomas Heigl Date: Thu, 10 Oct 2024 11:37:35 +0200 Subject: [PATCH] Update README for 5.6.2 --- README.md | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 6f575a973..d48accf0a 100644 --- a/README.md +++ b/README.md @@ -90,16 +90,10 @@ Please use the [Kryo mailing list](https://groups.google.com/forum/#!forum/kryo- ## Recent releases * [4.0.3](https://github.com/EsotericSoftware/kryo/releases/tag/kryo-parent-4.0.3) - brings bug fixes and performance improvements for chunked encoding. +* [5.6.2](https://github.com/EsotericSoftware/kryo/releases/tag/kryo-parent-5.6.2) - ensures compatibility with Java 8 * [5.6.1](https://github.com/EsotericSoftware/kryo/releases/tag/kryo-parent-5.6.1) - brings a bug fix for the Maven coordinates of the versioned artifact * [5.6.0](https://github.com/EsotericSoftware/kryo/releases/tag/kryo-parent-5.6.0) - brings bug fixes and performance improvements. * [5.5.0](https://github.com/EsotericSoftware/kryo/releases/tag/kryo-parent-5.5.0) - brings bug fixes and performance improvements. -* [5.4.0](https://github.com/EsotericSoftware/kryo/releases/tag/kryo-parent-5.4.0) - brings bug fixes and performance improvements. -* [5.3.0](https://github.com/EsotericSoftware/kryo/releases/tag/kryo-parent-5.3.0) - brings bug fixes and performance improvements. -* [5.2.1](https://github.com/EsotericSoftware/kryo/releases/tag/kryo-parent-5.2.1) - brings minor bug fixes and improvements. -* [5.2.0](https://github.com/EsotericSoftware/kryo/releases/tag/kryo-parent-5.2.0) - brings bug fixes for `RecordSerializer` and improvements. Important: If you are currently storing serialized `java.util.Record`, please see the [release notes](https://github.com/EsotericSoftware/kryo/releases/tag/kryo-parent-5.2.0) for upgrade instructions. -* [5.1.1](https://github.com/EsotericSoftware/kryo/releases/tag/kryo-parent-5.1.1) - brings bug fixes for `CompatibleFieldSerializer` and removes dependency from versioned artifact -* [5.1.0](https://github.com/EsotericSoftware/kryo/releases/tag/kryo-parent-5.1.0) - brings support for `java.util.Record` and improved support for older Android versions -* [5.0.0](https://github.com/EsotericSoftware/kryo/releases/tag/kryo-parent-5.0.0) - the final Kryo 5 release fixing many issues and making many long awaited improvements over Kryo 4. Note: For libraries (not applications) using Kryo, there's now a completely self-contained, versioned artifact (for details see [installation](#installation)). For migration from Kryo 4.x see also [Migration to v5](https://github.com/EsotericSoftware/kryo/wiki/Migration-to-v5). ## Installation @@ -117,7 +111,7 @@ To use the latest Kryo release in your application, use this dependency entry in com.esotericsoftware kryo - 5.6.1 + 5.6.2 ``` @@ -127,7 +121,7 @@ To use the latest Kryo release in a library you want to publish, use this depend com.esotericsoftware.kryo kryo5 - 5.6.1 + 5.6.2 ``` @@ -144,13 +138,13 @@ To use the latest Kryo snapshot, use: com.esotericsoftware kryo - 5.6.2-SNAPSHOT + 5.6.3-SNAPSHOT com.esotericsoftware.kryo kryo5 - 5.6.2-SNAPSHOT + 5.6.3-SNAPSHOT ```