From b8b3ed1af83d112e8499d11ce37d964e5dd9aeb1 Mon Sep 17 00:00:00 2001 From: Noritada Kobayashi Date: Thu, 20 Apr 2023 23:59:55 +0900 Subject: [PATCH] Bump to v0.7.1 --- CHANGELOG.md | 16 +++++++++++++++- Cargo.toml | 2 +- cli/Cargo.toml | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b0534d..aaa07a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.1] - 2023-04-20 +### Added + +- Library `grib` + - Support for Template 5.41/7.41 (PNG format). (#53, #55) +- Others + - GRIB tools from ecCodes are now mentioned in a section on comparison of GRIB processors in the cookbook. (#52) + +### Fixed + +- Library `grib` + - Fixed an issue that `size_hint()` results do not change after consuming iterator items. (#50, #54) + ## [0.7.0] - 2023-02-09 ### Added @@ -241,7 +254,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.7.0...HEAD +[unreleased]: https://github.com/noritada/grib-rs/compare/v0.7.1...HEAD +[0.7.1]: https://github.com/noritada/grib-rs/compare/v0.7.0...v0.7.1 [0.7.0]: https://github.com/noritada/grib-rs/compare/v0.6.1...v0.7.0 [0.6.1]: https://github.com/noritada/grib-rs/compare/v0.6.0...v0.6.1 [0.6.0]: https://github.com/noritada/grib-rs/compare/v0.5.0...v0.6.0 diff --git a/Cargo.toml b/Cargo.toml index f08afe4..3ab5622 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ exclude = ["/.github", "/testdata"] members = ["gen", "cli"] [workspace.package] -version = "0.7.0" +version = "0.7.1" authors = ["Noritada Kobayashi "] edition = "2021" license = "MIT OR Apache-2.0" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 08eb03f..871d750 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -23,7 +23,7 @@ chrono = "0.4.23" clap = "4.1" clap_complete = "4" console = "0.15" -grib = { path = "..", version = "=0.7.0" } +grib = { path = "..", version = "=0.7.1" } once_cell = "1.13" regex = "1.6"