mirror of https://github.com/kdl-org/kdl.git
Release 2.0.0-draft.8
This commit is contained in:
parent
edbdab2891
commit
0e58f61b18
|
|
@ -1,5 +1,13 @@
|
|||
# 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)
|
||||
|
||||
* `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
|
||||
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
|
||||
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
|
||||
model and the grammar.
|
||||
|
||||
This document describes KDL version `2.0.0-draft.7`. It was released on
|
||||
2024-12-10.
|
||||
This document describes KDL version `2.0.0-draft.8`. It was released on
|
||||
2024-12-14.
|
||||
|
||||
## Compatibility
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue