From abd5ad0edf0f38a38ff5684a07a04899ff39b0d0 Mon Sep 17 00:00:00 2001 From: James Mudd Date: Wed, 9 Sep 2020 22:05:25 +0100 Subject: [PATCH] Updates for v0.5.9 --- CHANGES.md | 8 ++++++++ jhdf/build.gradle | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 3c603f19..f9bdaeda 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,13 @@ # jHDF Change Log +## v0.5.9 +- Add support for v1 and v2 Data Layout Messages Fix https://github.com/jamesmudd/jhdf/issues/216 +- Add support for Old Object Modification Time Message - Improves compatibility with older files +- Fix issue if compact datasets are read multiple times +- Improve handling of empty contiguous datasets +- Test and coverage improvements +- Test dependency updates + ## v0.5.8 - *Breaking API change* `Dataset#getDiskSize` is renamed `Dataset#getSizeInBytes` and `Attribute#getDiskSize` is renamed `Attribute#getSizeInBytes` - New API method `Dataset#getStorageInBytes` which returns the total storage size of the dataset. By comparison with `Dataset#getSizeInBytes` allows the compression ratio to be obtained diff --git a/jhdf/build.gradle b/jhdf/build.gradle index d7f60a5c..6ac9b0c1 100644 --- a/jhdf/build.gradle +++ b/jhdf/build.gradle @@ -27,7 +27,7 @@ plugins { // Variables group = 'io.jhdf' -version = '0.5.8' +version = '0.5.9' compileJava { sourceCompatibility = "1.8"