From a866908c96b7022dcd497bf22b02401ac5854784 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20St=C3=B6hr?= Date: Sat, 21 Dec 2024 16:16:29 +0100 Subject: [PATCH] updated readme --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d69fdb1..bc16bc0 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Read [HTTP Archives](http://www.softwareishard.com/blog/har-12-spec/) with Java. de.sstoehr har-reader - 2.5.0 + 3.0.0 ``` @@ -104,6 +104,16 @@ HarReader harReader = new HarReader(new MyMapperFactory()); ## Latest Releases +### 3.0.0 - 2024-12-21 + +* Minimum Java version is now 17 + * Make use of records + * Use `ZonedDateTime` instead of `Date` +* Properly annotated fields with `@Nullable` and `@NotNull` +* _Please see full list of breaking changes in the changelog details_ + +[Details](https://github.com/sdstoehr/har-reader/releases/tag/har-reader-3.0.0) + ### 2.5.0 - 2024-11-20 * Fixed browser field to be nullable as required according to spec. (Previous versions mistakenly returned an empty browser object instead)