Skip to content

Commit 72e5260

Browse files
committed
adds CHANGELOG.md
1 parent f337e10 commit 72e5260

File tree

1 file changed

+58
-0
lines changed

1 file changed

+58
-0
lines changed

CHANGELOG.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
### Added
11+
12+
- Adds `CHANGELOG.md` which will be better upkept moving forward.
13+
- Adds `MaybePointer` to assist with deserialization which should not fail fast.
14+
15+
### Changed
16+
17+
- `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()`.
18+
- `std` is now enabled by default.
19+
20+
### Removed
21+
22+
- Removes optional `MalformedPointerError` from `Pointer`.
23+
24+
## [0.3.6] 2023-05-23
25+
26+
### Changed
27+
28+
- Adds quotes around `Pointer` debug output (#11)
29+
30+
### Fixed
31+
32+
- Adds missing `impl std::error::Error` for `Error`, `NotFoundError`, `MalformedError`
33+
- Fixes build for `std` feature flag
34+
35+
## [0.3.4] 2023-05-11
36+
37+
### Added
38+
39+
- Adds feature flag `fluent-uri` for `From<fluent_uri::Uri<_>` impl (#3)
40+
41+
## [0.2.0] 2023-02-24
42+
43+
### Changed
44+
45+
- `std` is now optional
46+
- Adds feature flags `"uniresid"`, `"url"` to enable implementing `From<Uri>`, `From<Url>` (respectively).
47+
48+
### Removed
49+
50+
- Removes `Cargo.lock`
51+
- Makes `uniresid` and `uri` optional
52+
53+
## [0.1.0] - 2022-06-12
54+
55+
### Fixed
56+
57+
- Fixes root pointer representation `""` rather than the erroneous `"/"`
58+
- Fixes an issue where encoded tokens were not being resolved properly

0 commit comments

Comments
 (0)