Skip to content

Commit f206f6e

Browse files
authored
Merge pull request #100 from jamesmudd/prepare-0.4.6
Prepare 0.4.6
2 parents 82c87a4 + b738660 commit f206f6e

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

CHANGES.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
Please note this project is still in pre-release development.
44

5+
## v0.4.6
6+
- Adds support for compound datasets
7+
- Adds support for array data type
8+
- Adds support for reading chunked datasets with Fletcher32 checksums, Note: the checksum is not verified.
9+
- Improved performance of Dataset.isEmpty method
10+
- Dependency updates
11+
512
## v0.4.5
613
- Fix #49 - Big (>10x) performance improvement for chunked dataset reads. Chunks are now decompressed in parallel and the resulting data copies are a large as possible.
714
- Update Gradle to 5.5

jhdf/build.gradle

+7-7
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ plugins {
2626

2727
// Variables
2828
group = 'io.jhdf'
29-
version = '0.4.5'
29+
version = '0.4.6'
3030
sourceCompatibility = 1.8
3131
targetCompatibility = 1.8
3232

@@ -39,18 +39,18 @@ repositories {
3939

4040
dependencies {
4141
// This dependency is exported to consumers, that is to say found on their compile classpath.
42-
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.8.0-beta4' // Need 1.8 for modules
42+
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.28'
4343
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'
4444

4545

4646
// Use JUnit 5 test framework
47-
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.5.0'
48-
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.5.0'
49-
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.5.0'
50-
testRuntimeOnly group: 'org.slf4j', name: 'slf4j-simple', version: '1.8.0-beta4'
47+
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.5.1'
48+
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-params', version: '5.5.1'
49+
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.5.1'
50+
testRuntimeOnly group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.28'
5151

5252
// Mocking
53-
testImplementation group: 'org.mockito', name: 'mockito-core', version: '2.28.2'
53+
testImplementation group: 'org.mockito', name: 'mockito-core', version: '3.0.0'
5454
// Matchers
5555
testImplementation group: 'org.hamcrest', name: 'hamcrest', version: '2.1'
5656
}

0 commit comments

Comments
 (0)