Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -254,6 +273,7 @@ and this project adheres to [Semantic Versioning].
[semantic versioning]: https://semver.org/spec/v2.0.0.html

<!-- Versions -->
[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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["./.", "examples/*"]

[package]
name = "traq-bot-http"
version = "0.8.3"
version = "0.9.0"
authors = ["H1rono <[email protected]>"]
edition = "2021"
description = "Library to parse POST requests of traQ BOT event"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down