1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-26 06:57:43 +02:00

Fix typo in error string for i32 parse in router deserialization (#2876)

* fix typo in error string for i32 parse

* update actix-router changelog for #2876

* Update CHANGES.md

Co-authored-by: Rob Ede <robjtede@icloud.com>
This commit is contained in:
Torin Cooper-Bennun
2022-09-19 18:44:52 +01:00
committed by GitHub
parent bd5c0af0a6
commit 07a7290432
2 changed files with 4 additions and 1 deletions

View File

@ -1,8 +1,11 @@
# Changes
## Unreleased - 2022-xx-xx
- Fix typo in error string in `Deserializer::deserialize_i32` implementation for `Value`. [#2876]
- Minimum supported Rust version (MSRV) is now 1.59 due to transitive `time` dependency.
[#2876]: https://github.com/actix/actix-web/pull/2876
## 0.5.0 - 2022-02-22
### Added