Skip to content

Commit

Permalink
Bump release number
Browse files Browse the repository at this point in the history
  • Loading branch information
magnusuMET committed Aug 8, 2024
1 parent 64e1037 commit a07b868
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>",
Expand All @@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion hdf5-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 3 additions & 1 deletion hdf5-src/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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++/**",
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion hdf5-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a07b868

Please sign in to comment.