Skip to content

Commit

Permalink
Release new version of hdf5
Browse files Browse the repository at this point in the history
  • Loading branch information
magnusuMET committed Feb 9, 2025
1 parent 6ea86e8 commit 0feb292
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
## hdf5-sys unreleased
## hdf5-src unreleased

## hdf5 unreleased
## hdf5 v0.10.0
Release date: Feb 09, 2025.
- Removed H5Type impl for tuples. It is recommended instead to use a struct and `derive` `H5Type` on this. See [`#54`](https://github.com/metno/hdf5-rust/issues/54) for an explanation of the issue with the old implementation (breaking change)
- Added features for each blosc filter type. Without enabling the blosc filter one can not set the corresponding filter flag (breaking change)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ HDF5 for Rust.
[![Build](https://github.com/metno/hdf5-rust/workflows/CI/badge.svg)](https://github.com/metno/hdf5-rust/actions?query=branch%3Amain)
[![Latest Version](https://img.shields.io/crates/v/hdf5-metno.svg)](https://crates.io/crates/hdf5-metno)
[![Documentation](https://docs.rs/hdf5-metno/badge.svg)](https://docs.rs/hdf5-metno)
[![Changelog](https://img.shields.io/github/v/release/metno/hdf5-rust)](https://github.com/metno/hdf5-rust/blob/master/CHANGELOG.md)
[![Changelog](https://img.shields.io/github/v/release/metno/hdf5-rust)](https://github.com/metno/hdf5-rust/blob/main/CHANGELOG.md)
![hdf5: rustc 1.77+](https://img.shields.io/badge/hdf5-rustc_1.77+-lightblue.svg)
[![Total Lines](https://tokei.rs/b1/github/metno/hdf5-rust)](https://github.com/metno/hdf5-rust)
[![Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
Expand All @@ -26,7 +26,7 @@ Requires HDF5 library of version 1.8.4 or later.
## Fork
This is a fork of https://github.com/aldanor/hdf5-rust used for publishing newer versions of the crate. This includes a change in the crate name to allow publishing on crates.io. For backwards compatibility consider using the following in your `Cargo.toml`:
```yaml
hdf5 = { package = "hdf5-metno", version = "0.9.0" }
hdf5 = { package = "hdf5-metno", version = "0.10.0" }
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion hdf5/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ readme = "../README.md"
description = "Thread-safe Rust bindings for the HDF5 library."
build = "build.rs"
categories = ["science", "filesystem"]
version = "0.9.4" # !V
version = "0.10.0" # !V
rust-version.workspace = true
authors.workspace = true
keywords.workspace = true
Expand Down

0 comments on commit 0feb292

Please sign in to comment.