From a07b868e46b7874baf93c19763dc8a257237590c Mon Sep 17 00:00:00 2001 From: Magnus Ulimoen Date: Thu, 8 Aug 2024 14:32:08 +0200 Subject: [PATCH] Bump release number --- Cargo.toml | 12 ++++++------ README.md | 2 +- hdf5-derive/Cargo.toml | 2 +- hdf5-src/Cargo.toml | 4 +++- hdf5-sys/Cargo.toml | 2 +- 5 files changed, 12 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 52a5b2ad..3cbb54b5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ members = ["hdf5", "hdf5-types", "hdf5-derive", "hdf5-sys", "hdf5-src"] default-members = ["hdf5", "hdf5-types", "hdf5-derive", "hdf5-sys"] [workspace.package] -version = "0.8.1" # !V +version = "0.9.0" # !V rust-version = "1.77.0" authors = [ "Ivan Smirnov ", @@ -26,8 +26,8 @@ mpi-sys = "0.2" num-complex = { version = "0.4", default-features = false } regex = "1.10" # internal -hdf5 = { package = "hdf5-metno", version = "0.8.1", path = "hdf5" } # !V -hdf5-derive = { package = "hdf5-metno-derive", version = "0.8.1", path = "hdf5-derive" } # !V -hdf5-src = { package = "hdf5-metno-src", version = "0.8.1", path = "hdf5-src" } # !V -hdf5-sys = { package = "hdf5-metno-sys", version = "0.8.1", path = "hdf5-sys" } # !V -hdf5-types = { package = "hdf5-metno-types", version = "0.8.1", path = "hdf5-types" } # !V +hdf5 = { package = "hdf5-metno", version = "0.9.0", path = "hdf5" } # !V +hdf5-derive = { package = "hdf5-metno-derive", version = "0.9.0", path = "hdf5-derive" } # !V +hdf5-src = { package = "hdf5-metno-src", version = "0.9.0", path = "hdf5-src" } # !V +hdf5-sys = { package = "hdf5-metno-sys", version = "0.9.0", path = "hdf5-sys" } # !V +hdf5-types = { package = "hdf5-metno-types", version = "0.9.0", path = "hdf5-types" } # !V diff --git a/README.md b/README.md index 7c8a9b1a..6cb5ad85 100644 --- a/README.md +++ b/README.md @@ -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.8.1" } +hdf5 = { package = "hdf5-metno", version = "0.9.0" } ``` ## Example diff --git a/hdf5-derive/Cargo.toml b/hdf5-derive/Cargo.toml index 3cedae3c..21716909 100644 --- a/hdf5-derive/Cargo.toml +++ b/hdf5-derive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hdf5-metno-derive" description = "Derive macro for HDF5 structs and enums." -categories = ["procedural-macro-helpers"] +categories = ["development-tools::procedural-macro-helpers"] readme = "README.md" version.workspace = true rust-version.workspace = true diff --git a/hdf5-src/Cargo.toml b/hdf5-src/Cargo.toml index 21c26154..711611b4 100644 --- a/hdf5-src/Cargo.toml +++ b/hdf5-src/Cargo.toml @@ -5,7 +5,7 @@ build = "build.rs" description = "Build script for compiling HDF5 C library from source." links = "hdf5src" readme = "README.md" -categories = ["ffi"] +categories = ["development-tools::ffi"] exclude = [ "ext/hdf5/bin/**", "ext/hdf5/c++/**", @@ -19,6 +19,8 @@ exclude = [ "ext/hdf5/hl/test/**", "ext/hdf5/hl/tools/**", "ext/hdf5/hl/examples/**", + "ext/hdf5/HDF5Examples/**", + "ext/hdf5/doxygen/**", ] version.workspace = true rust-version.workspace = true diff --git a/hdf5-sys/Cargo.toml b/hdf5-sys/Cargo.toml index 71ead7fc..e74e048f 100644 --- a/hdf5-sys/Cargo.toml +++ b/hdf5-sys/Cargo.toml @@ -4,7 +4,7 @@ build = "build.rs" description = "Native bindings to the HDF5 library." links = "hdf5" readme = "README.md" -categories = ["ffi", "filesystem", "science"] +categories = ["development-tools::ffi", "filesystem", "science"] version.workspace = true rust-version.workspace = true authors.workspace = true