Skip to content

Commit

Permalink
Merge pull request #423 from jamesmudd/prepare-0.6.9
Browse files Browse the repository at this point in the history
Prepare v0.6.9
  • Loading branch information
jamesmudd authored Oct 24, 2022
2 parents 3373bfe + 6720a4a commit 229ec57
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# jHDF Change Log

## v0.6.9
- Add support for LZ4 compressed datasets https://github.com/jamesmudd/jhdf/issues/415
- Improve BitShuffle performance and reduce memory usage
- Add CI on ARM64 architecture
- Build and dependency updates

## v0.6.8
- Add support for getting flat data `Dataset#getDataFlat()` https://github.com/jamesmudd/jhdf/issues/397
- Add support for dereferencing addresses/ids `HdfFile.getNodeByAddress(long address) ` https://github.com/jamesmudd/jhdf/issues/316
Expand Down
5 changes: 2 additions & 3 deletions jhdf/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ plugins {

// Variables
group = 'io.jhdf'
version = '0.6.8'
version = '0.6.9'

compileJava {
sourceCompatibility = "1.8"
Expand All @@ -52,11 +52,10 @@ dependencies {
implementation group: 'com.ning', name: 'compress-lzf', version: '1.1'
// lz5 support https://mvnrepository.com/artifact/org.lz4/lz4-java
implementation group: 'org.lz4', name: 'lz4-java', version: '1.8.0'
// logging impl for examples and tests
runtimeOnly group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.36'

// Use JUnit 5 test framework
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter', version: '5.9.1'
testRuntimeOnly group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.36'

// Mocking
testImplementation group: 'org.mockito', name: 'mockito-inline', version: '4.8.1'
Expand Down

0 comments on commit 229ec57

Please sign in to comment.