diff --git a/CHANGELOG.md b/CHANGELOG.md index 2eea7c1..d73b6fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,25 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog], and this project adheres to [Semantic Versioning]. +## [v0.9.0] - 2024-07-09 + +### Added + +- [rocket](https://rocket.rs)を使用したexampleを追加 + +### Changed + +- 依存ライブラリを更新 +- `RequestParser::parse_headers`および`RequestParser::parse`の引数を変更 + - `header`が`IntoIterator`を受け入れるようになりました + - この変更でコンパイルできなくなるコードが存在する可能性があります +- 内部コードの改善 +- [`clippy::cargo`](https://doc.rust-lang.org/clippy/lints.html#cargo)に対応 + +### For Developers + +- GitHub Actions, Nix Flakesの依存関係を更新 + ## [v0.8.3] - 2024-04-13 ### Added @@ -254,6 +273,7 @@ and this project adheres to [Semantic Versioning]. [semantic versioning]: https://semver.org/spec/v2.0.0.html +[v0.9.0]: https://github.com/H1rono/traq-bot-http-rs/compare/v0.8.3..v0.9.0 [v0.8.3]: https://github.com/H1rono/traq-bot-http-rs/compare/v0.8.2..v0.8.3 [v0.8.2]: https://github.com/H1rono/traq-bot-http-rs/compare/v0.8.1..v0.8.2 [v0.8.1]: https://github.com/H1rono/traq-bot-http-rs/compare/v0.8.0..v0.8.1 diff --git a/Cargo.lock b/Cargo.lock index ee40974..02f0217 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1586,7 +1586,7 @@ dependencies = [ [[package]] name = "traq-bot-http" -version = "0.8.3" +version = "0.9.0" dependencies = [ "chrono", "http 1.1.0", diff --git a/Cargo.toml b/Cargo.toml index 2fd1134..47ce26f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["./.", "examples/*"] [package] name = "traq-bot-http" -version = "0.8.3" +version = "0.9.0" authors = ["H1rono "] edition = "2021" description = "Library to parse POST requests of traQ BOT event" diff --git a/README.md b/README.md index b96385d..adacc7f 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ traQ BOTのPOSTリクエストをパースするライブラリです。 http = "1.0" axum = "0.7" tokio = { version = "1", features = ["full"] } -traq-bot-http = "0.8" +traq-bot-http = "0.9" ``` `main.rs`