Skip to content

Commit

Permalink
Bump to v0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
noritada committed Aug 12, 2024
1 parent 1a61e1a commit 54dccdd
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 5 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ exclude = ["/.github", "/testdata"]
members = ["gen", "cli", "demo"]

[workspace.package]
version = "0.10.0"
version = "0.10.1"
authors = ["Noritada Kobayashi <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down

0 comments on commit 54dccdd

Please sign in to comment.