mirror of https://github.com/kdl-org/kdl-rs.git
Compare commits
3 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
da8335fcb7 | |
|
|
9bd26c619c | |
|
|
b5fa2e1c70 |
10
CHANGELOG.md
10
CHANGELOG.md
|
|
@ -1,5 +1,15 @@
|
|||
# `kdl` Release Changelog
|
||||
|
||||
<a name="4.7.0"></a>
|
||||
## 4.7.0 (2024-12-03)
|
||||
|
||||
This is a quick maintenance release to bump the miette version for folks still
|
||||
using kdl v1.
|
||||
|
||||
### Features
|
||||
|
||||
* **deps:** bump miette to 7.4.0 ([b5fa2e1c](https://github.com/kdl-org/kdl-rs/commit/b5fa2e1c70e522b6929559b9382b34368d2f41da))
|
||||
|
||||
<a name="4.6.0"></a>
|
||||
## 4.6.0 (2022-10-09)
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "kdl"
|
||||
version = "4.6.0"
|
||||
version = "4.7.0"
|
||||
description = "Document-oriented KDL parser and API. Allows formatting/whitespace/comment-preserving parsing and modification of KDL text."
|
||||
authors = ["Kat Marchán <kzm@zkat.tech>", "KDL Community"]
|
||||
license = "Apache-2.0"
|
||||
|
|
@ -15,6 +15,6 @@ default = ["span"]
|
|||
span = []
|
||||
|
||||
[dependencies]
|
||||
miette = "5.3.0"
|
||||
miette = "7.4.0"
|
||||
nom = { version = "7.1.1", default-features = false }
|
||||
thiserror = "1.0.30"
|
||||
|
|
|
|||
|
|
@ -286,7 +286,7 @@ fn plain_identifier<'a: 'b, 'b>(
|
|||
|
||||
fn quoted_identifier<'a: 'b, 'b>(
|
||||
kdl_parser: &'b KdlParser<'a>,
|
||||
) -> impl Fn(&'a str) -> IResult<&str, KdlIdentifier, KdlParseError<&str>> + 'b {
|
||||
) -> impl Fn(&'a str) -> IResult<&'a str, KdlIdentifier, KdlParseError<&'a str>> + 'b {
|
||||
move |input| {
|
||||
let start = input;
|
||||
let (input, (raw, val)) = alt((string, raw_string))(input)?;
|
||||
|
|
|
|||
Loading…
Reference in New Issue