Skip to content

Commit

Permalink
Bump to v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
noritada committed Jul 4, 2024
1 parent 8e92ceb commit c75e168
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 5 deletions.
27 changes: 26 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.10.0] - 2024-07-04
### Added

- Library `grib`
- Support for regular Gaussian grids (Template 3.40). (#85, #90)
- New method `SubMessage::grid_shape()` to access the grid shape without iteration. (#80)
- New method `FixedSurface::unit()` to access the unit string defined for the type of the surface, if any. (#81)
- New method `GridDefinitionTemplateValues::short_name()` to return the short name defined for the grid, based on ecCodes `gridType` strings. (#87)
- New utility function `grib::utils::compute_gaussian_latitudes()` to compute Gaussian latitudes. (#92)
- Others
- GRIB2 viewer web app for demo using the crate is now available. (#79, #83, #84)
- Now that example code in README.md has been subject to testing, we can know any update omissions. (#89)

### Changed

- Library `grib`
- `SubMessage::latlons()` now strictly returns an error for quasi-regular latitude/longitude grids as unsupported. (#86)
- `LatLonGridIterator` has been renamed to `RegularGridIterator`. (#88)

### Contributors

- Thanks for sharing the data that cannot be processed.
- @BruAPAHE (#85)

## [0.9.2] - 2024-05-24
### Added

Expand Down Expand Up @@ -332,7 +356,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.9.2...HEAD
[unreleased]: https://github.com/noritada/grib-rs/compare/v0.10.0...HEAD
[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
[0.9.0]: https://github.com/noritada/grib-rs/compare/v0.8.0...v0.9.0
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.9.2"
version = "0.10.0"
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.9.2", features = ["gridpoints-proj"] }
grib = { path = "..", version = "=0.10.0", features = ["gridpoints-proj"] }
pager = "0.16"
which = "4"

[target.'cfg(not(unix))'.dependencies]
grib = { path = "..", version = "=0.9.2" }
grib = { path = "..", version = "=0.10.0" }

[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.9.2" }
grib = { path = "..", version = "0.10.0" }
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
web-sys = { version = "0.3", features = [
Expand Down

0 comments on commit c75e168

Please sign in to comment.