Skip to content

Commit a07b868

Browse files
committed
Bump release number
1 parent 64e1037 commit a07b868

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ members = ["hdf5", "hdf5-types", "hdf5-derive", "hdf5-sys", "hdf5-src"]
44
default-members = ["hdf5", "hdf5-types", "hdf5-derive", "hdf5-sys"]
55

66
[workspace.package]
7-
version = "0.8.1" # !V
7+
version = "0.9.0" # !V
88
rust-version = "1.77.0"
99
authors = [
1010
"Ivan Smirnov <[email protected]>",
@@ -26,8 +26,8 @@ mpi-sys = "0.2"
2626
num-complex = { version = "0.4", default-features = false }
2727
regex = "1.10"
2828
# internal
29-
hdf5 = { package = "hdf5-metno", version = "0.8.1", path = "hdf5" } # !V
30-
hdf5-derive = { package = "hdf5-metno-derive", version = "0.8.1", path = "hdf5-derive" } # !V
31-
hdf5-src = { package = "hdf5-metno-src", version = "0.8.1", path = "hdf5-src" } # !V
32-
hdf5-sys = { package = "hdf5-metno-sys", version = "0.8.1", path = "hdf5-sys" } # !V
33-
hdf5-types = { package = "hdf5-metno-types", version = "0.8.1", path = "hdf5-types" } # !V
29+
hdf5 = { package = "hdf5-metno", version = "0.9.0", path = "hdf5" } # !V
30+
hdf5-derive = { package = "hdf5-metno-derive", version = "0.9.0", path = "hdf5-derive" } # !V
31+
hdf5-src = { package = "hdf5-metno-src", version = "0.9.0", path = "hdf5-src" } # !V
32+
hdf5-sys = { package = "hdf5-metno-sys", version = "0.9.0", path = "hdf5-sys" } # !V
33+
hdf5-types = { package = "hdf5-metno-types", version = "0.9.0", path = "hdf5-types" } # !V

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Requires HDF5 library of version 1.8.4 or later.
2626
## Fork
2727
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`:
2828
```yaml
29-
hdf5 = { package = "hdf5-metno", version = "0.8.1" }
29+
hdf5 = { package = "hdf5-metno", version = "0.9.0" }
3030
```
3131

3232
## Example

hdf5-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "hdf5-metno-derive"
33
description = "Derive macro for HDF5 structs and enums."
4-
categories = ["procedural-macro-helpers"]
4+
categories = ["development-tools::procedural-macro-helpers"]
55
readme = "README.md"
66
version.workspace = true
77
rust-version.workspace = true

hdf5-src/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build = "build.rs"
55
description = "Build script for compiling HDF5 C library from source."
66
links = "hdf5src"
77
readme = "README.md"
8-
categories = ["ffi"]
8+
categories = ["development-tools::ffi"]
99
exclude = [
1010
"ext/hdf5/bin/**",
1111
"ext/hdf5/c++/**",
@@ -19,6 +19,8 @@ exclude = [
1919
"ext/hdf5/hl/test/**",
2020
"ext/hdf5/hl/tools/**",
2121
"ext/hdf5/hl/examples/**",
22+
"ext/hdf5/HDF5Examples/**",
23+
"ext/hdf5/doxygen/**",
2224
]
2325
version.workspace = true
2426
rust-version.workspace = true

hdf5-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build = "build.rs"
44
description = "Native bindings to the HDF5 library."
55
links = "hdf5"
66
readme = "README.md"
7-
categories = ["ffi", "filesystem", "science"]
7+
categories = ["development-tools::ffi", "filesystem", "science"]
88
version.workspace = true
99
rust-version.workspace = true
1010
authors.workspace = true

0 commit comments

Comments
 (0)