From 54dccdd8d8ec4e8556ccfdd51bbb66172ca9045e Mon Sep 17 00:00:00 2001 From: Noritada Kobayashi Date: Tue, 13 Aug 2024 02:18:16 +0900 Subject: [PATCH] Bump to v0.10.1 --- CHANGELOG.md | 14 +++++++++++++- Cargo.toml | 2 +- cli/Cargo.toml | 4 ++-- demo/Cargo.toml | 2 +- 4 files changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 714606c..df4726b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.1] - 2024-08-12 +### Changed + +- Library `grib` + - Complex packing decoder now strictly checks that original field values are floating-points. (#95) + +### Fixed + +- Library `grib` + - Fixed a possible issue that decoders returned wrong values when nbit is 0 and D is not 0, although no such data have been found so far. (#96) + ## [0.10.0] - 2024-07-04 ### Added @@ -356,7 +367,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - inspect: display of information mainly for development purpose such as template numbers - list: display of a list of sections (the style is still tentative) -[unreleased]: https://github.com/noritada/grib-rs/compare/v0.10.0...HEAD +[unreleased]: https://github.com/noritada/grib-rs/compare/v0.10.1...HEAD +[0.10.1]: https://github.com/noritada/grib-rs/compare/v0.10.0...v0.10.1 [0.10.0]: https://github.com/noritada/grib-rs/compare/v0.9.2...v0.10.0 [0.9.2]: https://github.com/noritada/grib-rs/compare/v0.9.1...v0.9.2 [0.9.1]: https://github.com/noritada/grib-rs/compare/v0.9.0...v0.9.1 diff --git a/Cargo.toml b/Cargo.toml index 950f374..bb4dc78 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ exclude = ["/.github", "/testdata"] members = ["gen", "cli", "demo"] [workspace.package] -version = "0.10.0" +version = "0.10.1" authors = ["Noritada Kobayashi "] edition = "2021" license = "MIT OR Apache-2.0" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 597f19a..a64faa5 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -27,12 +27,12 @@ once_cell = "1.13" regex = "1.6" [target.'cfg(unix)'.dependencies] -grib = { path = "..", version = "=0.10.0", features = ["gridpoints-proj"] } +grib = { path = "..", version = "=0.10.1", features = ["gridpoints-proj"] } pager = "0.16" which = "4" [target.'cfg(not(unix))'.dependencies] -grib = { path = "..", version = "=0.10.0" } +grib = { path = "..", version = "=0.10.1" } [dev-dependencies] assert_cmd = "2" diff --git a/demo/Cargo.toml b/demo/Cargo.toml index 3e64e6a..e540fc2 100644 --- a/demo/Cargo.toml +++ b/demo/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] gloo-file = { version = "0.3", features = ["futures"] } -grib = { path = "..", version = "0.10.0" } +grib = { path = "..", version = "0.10.1" } wasm-bindgen = "0.2" wasm-bindgen-futures = "0.4" web-sys = { version = "0.3", features = [