mirror of https://github.com/kdl-org/kdl.git
Release 2.0.0-draft.8
This commit is contained in:
parent
edbdab2891
commit
a5f00a5594
|
|
@ -1,5 +1,13 @@
|
||||||
# KDL Changelog
|
# KDL Changelog
|
||||||
|
|
||||||
|
## 2.0.0-draft.8 (2024-12-14)
|
||||||
|
|
||||||
|
* Some details have been clarified around the treatment of whitespace in
|
||||||
|
multiline strings.
|
||||||
|
* `raw-string` productions have been updated to be explicitly non-greedy and
|
||||||
|
"fallible".
|
||||||
|
* Some tests have been added, others adjusted, some removed, after a cleanup pass.
|
||||||
|
|
||||||
## 2.0.0-draft.7 (2024-12-10)
|
## 2.0.0-draft.7 (2024-12-10)
|
||||||
|
|
||||||
* `node-space` is now allowed as whitespace after a `slashdash`, meaning line
|
* `node-space` is now allowed as whitespace after a `slashdash`, meaning line
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,7 @@ There's a living [specification](SPEC.md), as well as various
|
||||||
[implementations](#implementations). You can also check out the [FAQ](#faq) to
|
[implementations](#implementations). You can also check out the [FAQ](#faq) to
|
||||||
answer all your burning questions!
|
answer all your burning questions!
|
||||||
|
|
||||||
The current version of the KDL spec is `2.0.0-draft.7`.
|
The current version of the KDL spec is `2.0.0-draft.8`.
|
||||||
|
|
||||||
In addition to a spec for KDL itself, there are also standard specs for [a KDL
|
In addition to a spec for KDL itself, there are also standard specs for [a KDL
|
||||||
Query Language](QUERY-SPEC.md) based on CSS selectors, and [a KDL Schema
|
Query Language](QUERY-SPEC.md) based on CSS selectors, and [a KDL Schema
|
||||||
|
|
|
||||||
4
SPEC.md
4
SPEC.md
|
|
@ -3,8 +3,8 @@
|
||||||
This is the semi-formal specification for KDL, including the intended data
|
This is the semi-formal specification for KDL, including the intended data
|
||||||
model and the grammar.
|
model and the grammar.
|
||||||
|
|
||||||
This document describes KDL version `2.0.0-draft.7`. It was released on
|
This document describes KDL version `2.0.0-draft.8`. It was released on
|
||||||
2024-12-10.
|
2024-12-14.
|
||||||
|
|
||||||
## Compatibility
|
## Compatibility
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue