File tree 3 files changed +4
-4
lines changed
src/main/java/io/jhdf/object/datatype
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
# jHDF Change Log
2
2
3
+ ## v0.8.2 - August 2024
4
+ - Add support for writing ` boolean ` datasets and attributes as Bitfield
5
+
3
6
## v0.8.1 - August 2024
4
7
- Add support fo writing ` String ` datasets and attributes
5
8
- Add ` _jHDF ` default attribute to root group
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ plugins {
27
27
28
28
// Variables
29
29
group = ' io.jhdf'
30
- version = ' 0.8.1 '
30
+ version = ' 0.8.2 '
31
31
32
32
compileJava {
33
33
sourceCompatibility = " 1.8"
Original file line number Diff line number Diff line change 19
19
import java .nio .ByteBuffer ;
20
20
import java .nio .ByteOrder ;
21
21
import java .util .Arrays ;
22
- import java .util .BitSet ;
23
22
import java .util .Objects ;
24
- import java .util .concurrent .atomic .AtomicInteger ;
25
- import java .util .concurrent .atomic .LongAdder ;
26
23
27
24
import static io .jhdf .Utils .stripLeadingIndex ;
28
25
You can’t perform that action at this time.
0 commit comments