Skip to content

Commit

Permalink
Update README for 5.0.0-RC9, add compat reports
Browse files Browse the repository at this point in the history
  • Loading branch information
magro committed Aug 14, 2020
1 parent 7a2d530 commit 78f3332
Show file tree
Hide file tree
Showing 2 changed files with 1,133 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Please use the [Kryo mailing list](https://groups.google.com/forum/#!forum/kryo-

## Recent releases

* [5.0.0-RC8](https://github.com/EsotericSoftware/kryo/releases/tag/kryo-parent-5.0.0-RC8) - 8th release candidate with minor fixes and performance improvements. 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).
* [5.0.0-RC9](https://github.com/EsotericSoftware/kryo/releases/tag/kryo-parent-5.0.0-RC9) - 9th release candidate with significant performance improvements. 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).
* [5.0.0-RC1](https://github.com/EsotericSoftware/kryo/releases/tag/kryo-parent-5.0.0-RC1) - fixes many issues and makes many long awaited improvements.
* [4.0.2](https://github.com/EsotericSoftware/kryo/releases/tag/kryo-parent-4.0.2) - brings several incremental fixes and improvements.

Expand All @@ -104,7 +104,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.0-RC8</version>
<version>5.0.0-RC9</version>
</dependency>
```

Expand All @@ -114,7 +114,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.0-RC8</version>
<version>5.0.0-RC9</version>
</dependency>
```

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

Expand Down
Loading

0 comments on commit 78f3332

Please sign in to comment.