mirror of https://github.com/kdl-org/kdl-rs.git
docs: update readme and changelog
This commit is contained in:
parent
52a7c2cba1
commit
8db6e71500
14
CHANGELOG.md
14
CHANGELOG.md
|
|
@ -1,5 +1,19 @@
|
||||||
# `kdl` Release Changelog
|
# `kdl` Release Changelog
|
||||||
|
|
||||||
|
<a name="6.2.0"></a>
|
||||||
|
## 6.2.0 (2025-01-01)
|
||||||
|
|
||||||
|
More Compliant Than Ever Before™️
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* **fallback:** apply heuristics when doing fallbacks (#111) ([f5007fce](https://github.com/kdl-org/kdl-rs/commit/f5007fce44523c594888214ed171fed0955ef1f5))
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **parser:** various tests and bugfixes (#112) ([52a7c2cb](https://github.com/kdl-org/kdl-rs/commit/52a7c2cba131155e3a21756578dd59cc1a2156b8))
|
||||||
|
|
||||||
<a name="6.1.0"></a>
|
<a name="6.1.0"></a>
|
||||||
## 6.1.0 (2024-12-22)
|
## 6.1.0 (2024-12-22)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -112,9 +112,9 @@ Error:
|
||||||
version of `kdl-rs`, and so may be fairly heavy.
|
version of `kdl-rs`, and so may be fairly heavy.
|
||||||
* `v1-fallback` - Implies `v1`. Makes it so the various `*::parse()` and
|
* `v1-fallback` - Implies `v1`. Makes it so the various `*::parse()` and
|
||||||
`FromStr` implementations try to parse their inputs as `v2`, and, if that
|
`FromStr` implementations try to parse their inputs as `v2`, and, if that
|
||||||
fails, try again with `v1`. Errors will only be reported as if the input was
|
fails, try again with `v1`. For `KdlDocument`, a heuristic will be applied
|
||||||
`v2`. To manage this more precisely, you can use the `*::parse_v2` and
|
if both `v1` and `v2` parsers fail, to pick which error(s) to return. For
|
||||||
`*::parse_v1` methods.
|
other types, only the `v2` parser's errors will be returned.
|
||||||
|
|
||||||
### Quirks
|
### Quirks
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue