-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from chanced/remove-error-from-pointer
Remove `MalformedPointer` from `Pointer`
- Loading branch information
Showing
7 changed files
with
268 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [0.4.0] 2023-05-31 | ||
|
||
### Added | ||
|
||
- Adds `CHANGELOG.md` which will be better upkept moving forward. | ||
- Adds `MaybePointer` to assist with deserialization which should not fail fast. | ||
|
||
### Changed | ||
|
||
- `Pointer::new` now accepts a generic list, so `&["example"]` can be replaced by `["example"]`. For untyped, empty slices (i.e. `Pointer::new(&[])`), use `Pointer::default()`. | ||
- `std` is now enabled by default. | ||
|
||
### Removed | ||
|
||
- Removes optional `MalformedPointerError` from `Pointer`. | ||
|
||
## [0.3.6] 2023-05-23 | ||
|
||
### Changed | ||
|
||
- Adds quotes around `Pointer` debug output (#11) | ||
|
||
### Fixed | ||
|
||
- Adds missing `impl std::error::Error` for `Error`, `NotFoundError`, `MalformedError` | ||
- Fixes build for `std` feature flag | ||
|
||
## [0.3.4] 2023-05-11 | ||
|
||
### Added | ||
|
||
- Adds feature flag `fluent-uri` for `From<fluent_uri::Uri<_>` impl (#3) | ||
|
||
## [0.2.0] 2023-02-24 | ||
|
||
### Changed | ||
|
||
- `std` is now optional | ||
- Adds feature flags `"uniresid"`, `"url"` to enable implementing `From<Uri>`, `From<Url>` (respectively). | ||
|
||
### Removed | ||
|
||
- Removes `Cargo.lock` | ||
- Makes `uniresid` and `uri` optional | ||
|
||
## [0.1.0] - 2022-06-12 | ||
|
||
### Fixed | ||
|
||
- Fixes root pointer representation `""` rather than the erroneous `"/"` | ||
- Fixes an issue where encoded tokens were not being resolved properly |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.