You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
+
## [0.4.0] 2023-05-31
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)
0 commit comments