Skip to content

Commit

Permalink
Update changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
CathalMullan committed Nov 12, 2024
1 parent 0843802 commit 02a8ec0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- `Router` now requires an explicit lifetime.
- All routes now require a leading `/`.
- Router display no longer shows internal root node. Matchable nodes are now denoted by `[*]`.
- Route expander now converts empty routes `""` to `"/"`.
- `Parameters` lists make use of `smallvec` now.

### Removed

- Individual parameters are returned as tuples, rather than `Parameter`.

### Fixed

- Touching parameters are now correctly rejected.

## [0.6.0] - 2024-10-27

Expand Down
2 changes: 1 addition & 1 deletion src/errors/encoding.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::{error::Error, fmt::Display};

/// Errors relating to attempting to decode UTF8 and percent-encoded strings.
/// Errors relating to attempting to decode UTF-8 and percent-encoded strings.
#[derive(Debug, PartialEq, Eq)]
pub enum EncodingError {
/// Invalid UTF-8 sequence encountered.
Expand Down

0 comments on commit 02a8ec0

Please sign in to comment.