Skip to content

Commit d44992c

Browse files
committed
sonarqube cleanup.
1 parent d23a648 commit d44992c

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Hdf5JavaLib: HDF5 Support for Java
22

3-
Hdf5JavaLib is a pure Java library for reading HDF5 files, released as version 0.1.3. It provides robust HDF5 support in Java, enabling developers to read datasets in the root group, including compound datasets, scalars, vectors, and multi-dimensional data, from files generated by the C++ HDF5 library. Ideal for scientific computing and data analysis without external dependencies.
3+
Hdf5JavaLib is a pure Java library for reading HDF5 files, released as version 0.2.1. It provides robust HDF5 support in Java, enabling developers to read datasets in the root group, including compound datasets, scalars, vectors, and multi-dimensional data, from files generated by the C++ HDF5 library. Ideal for scientific computing and data analysis without external dependencies.
44

55
## Getting Started
66

@@ -12,7 +12,7 @@ Hdf5JavaLib is available on [Maven Central](https://search.maven.org/artifact/or
1212
<dependency>
1313
<groupId>org.hdf5javalib</groupId>
1414
<artifactId>hdf5javalib</artifactId>
15-
<version>0.1.3</version>
15+
<version>0.2.1</version>
1616
</dependency>
1717
```
1818

docs/read.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
# Hdf5JavaLib: Read Capabilities (Version 0.1.3)
1+
# Hdf5JavaLib: Read Capabilities (Version 0.2.1)
22

3-
Hdf5JavaLib is a pure Java library for reading HDF5 files, released as version 0.1.3. This guide helps users read datasets in the root group using examples from the `org.hdf5javalib.examples.read` package. The library reads HDF5 files generated by the C++ HDF5 library, supporting compound datasets, multi-dimensional data, and various datatypes. New in version 0.1.3: enhanced sequential and parallel streaming, array flattening, slicing, reducing along axes, filtering with coordinate lists, and custom type converters for compound datasets.
3+
Hdf5JavaLib is a pure Java library for reading HDF5 files, released as version 0.2.1. This guide helps users read datasets in the root group using examples from the `org.hdf5javalib.examples.read` package. The library reads HDF5 files generated by the C++ HDF5 library, supporting compound datasets, multi-dimensional data, and various datatypes. New in version 0.2.1: enhanced sequential and parallel streaming, array flattening, slicing, reducing along axes, filtering with coordinate lists, and custom type converters for compound datasets.
44

55
## Setup
66

77
### Add the Dependency
88

9-
Add Hdf5JavaLib to your project via [Maven Central](https://search.maven.org/artifact/org.hdf5javalib/hdf5javalib/0.1.3/jar):
9+
Add Hdf5JavaLib to your project via [Maven Central](https://search.maven.org/artifact/org.hdf5javalib/hdf5javalib/0.2.1/jar):
1010

1111
```xml
1212
<dependency>
1313
<groupId>org.hdf5javalib</groupId>
1414
<artifactId>hdf5javalib</artifactId>
15-
<version>0.1.3</version>
15+
<version>0.2.1</version>
1616
</dependency>
1717
```
1818

0 commit comments

Comments
 (0)