From dec1ca5a67912b045ed31d72e76571feb5b3c0fe Mon Sep 17 00:00:00 2001 From: James Mudd Date: Tue, 12 Nov 2019 21:27:14 +0000 Subject: [PATCH 1/2] Update version number to 0.5.2 --- jhdf/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jhdf/build.gradle b/jhdf/build.gradle index 71406740..b0ee1116 100644 --- a/jhdf/build.gradle +++ b/jhdf/build.gradle @@ -26,7 +26,7 @@ plugins { // Variables group = 'io.jhdf' -version = '0.5.1' +version = '0.5.2' sourceCompatibility = 1.8 targetCompatibility = 1.8 // Set source encoding to UTF-8 From 3faab8f97732e4a0a9ec14f97324aeb6a2b52a19 Mon Sep 17 00:00:00 2001 From: James Mudd Date: Tue, 12 Nov 2019 21:29:51 +0000 Subject: [PATCH 2/2] Update change log for v0.5.2 --- CHANGES.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index ddcbc723..e71adda8 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # jHDF Change Log +## v0.5.2 +- Fix https://github.com/jamesmudd/jhdf/issues/124 String padding not handled correctly. +- Fix https://github.com/jamesmudd/jhdf/issues/132 Multi dimensional fixed length string datasets read incorrectly. + ## v0.5.1 - Fix bug in chunked v4 datasets (added in v0.5.0) where incorrect data was returned if, fixed array or extensible array indexing was used and the dataset dimensions were not a multiple of the chunk dimensions. - Adds support for enum datasets (which are returned in string form) https://github.com/jamesmudd/jhdf/issues/121