Skip to content

Commit

Permalink
Update README for 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
theigl committed Apr 8, 2021
1 parent 4fbd388 commit 76c5e5d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@ Please use the [Kryo mailing list](https://groups.google.com/forum/#!forum/kryo-

## Recent releases

* [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.4](https://github.com/EsotericSoftware/kryo/releases/tag/kryo-parent-5.0.4) - brings an important fix for `Pool`
* [5.0.3](https://github.com/EsotericSoftware/kryo/releases/tag/kryo-parent-5.0.3) - brings an important fix for generics optimization.
* [5.0.2](https://github.com/EsotericSoftware/kryo/releases/tag/kryo-parent-5.0.2) - brings an important fix for `CompatibleFieldSerializer`.
* [5.0.1](https://github.com/EsotericSoftware/kryo/releases/tag/kryo-parent-5.0.1) - brings several incremental fixes and improvements.
* [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).
* [4.0.2](https://github.com/EsotericSoftware/kryo/releases/tag/kryo-parent-4.0.2) - brings several incremental fixes and improvements.

## Installation

Expand All @@ -109,7 +109,7 @@ To use the latest Kryo release in your application, use this dependency entry in
<dependency>
<groupId>com.esotericsoftware</groupId>
<artifactId>kryo</artifactId>
<version>5.0.4</version>
<version>5.1.0</version>
</dependency>
```

Expand All @@ -119,7 +119,7 @@ To use the latest Kryo release in a library you want to publish, use this depend
<dependency>
<groupId>com.esotericsoftware.kryo</groupId>
<artifactId>kryo5</artifactId>
<version>5.0.4</version>
<version>5.1.0</version>
</dependency>
```

Expand All @@ -136,13 +136,13 @@ To use the latest Kryo snapshot, use:
<dependency>
<groupId>com.esotericsoftware</groupId>
<artifactId>kryo</artifactId>
<version>5.0.5-SNAPSHOT</version>
<version>5.1.1-SNAPSHOT</version>
</dependency>
<!-- for usage in a library that should be published: -->
<dependency>
<groupId>com.esotericsoftware.kryo</groupId>
<artifactId>kryo5</artifactId>
<version>5.0.5-SNAPSHOT</version>
<version>5.1.1-SNAPSHOT</version>
</dependency>
```

Expand All @@ -152,7 +152,7 @@ Not everyone is a Maven fan. Using Kryo without Maven requires placing the [Kryo

### On Android

Kryo 5 ships with Objenesis 3.1 which [currently supports](https://github.com/easymock/objenesis/issues/79) Android API >= 26. If you want to use Kryo with older Android APIs, you need to explicitely depend on Objensis 2.6.
Kryo 5 prior to 5.1.0 ships with Objenesis 3.1 which [currently supports](https://github.com/easymock/objenesis/issues/79) Android API >= 26. If you want to use Kryo with older Android APIs, you need to explicitely depend on Objensis 2.6.

```
implementation ('com.esotericsoftware:kryo:5.0.4') {
Expand Down

0 comments on commit 76c5e5d

Please sign in to comment.