From 574adbde8f2340c9739b28c6ec8e600cfee3af6d Mon Sep 17 00:00:00 2001 From: DQ Date: Wed, 26 Apr 2023 20:22:12 +0200 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18832eb..4bfd531 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ * Documentation has been improved in most areas, together with a switch to a more principled module structure that allows explicitly documenting submodules. * The `Language` trait has been deprecated in favour of a new `Syntax` trait. `Syntax` provides the same methods that `Language` did before, but is implemented directly on the syntax kind enum instead of an additional type representing the language. * The supertrait requirements on `PartialOrd`, `Ord`, and `Hash` have been dropped. - * TODO: this allows to optionally provide derive. To enable, add feature flag + * This allows us to optionally provide a derive macro for `Syntax`. To enable the macro, add the `derive` feature flag in your `Cargo.toml` and `#[derive(Syntax)]` away! * The `interning` module has been rewritten. It now provides fuctions for obtaining a default interner (`new_interner` and `new_threaded_interner`) and provides a small, dependency-free interner implementation. * Compatibility with other interners can be enable via feature flags. * **Note** that compatibilty with `lasso` is not enabled by default. Use the `lasso_compat` feature to match the previous default. @@ -54,4 +54,4 @@ * `sync` * `Arc` * `prelude` - * re-exports of the most-used items \ No newline at end of file + * re-exports of the most-used items