diff --git a/CHANGELOG.md b/CHANGELOG.md index 97319aa..99e63c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [Version 5.2.0](https://github.com/trishume/syntect/compare/v5.1.0...v5.2.0) (2024-02-07) + +### Improvements + +- Eliminate syntect library's dependency on serde's "derive" feature. Increases build parallelism. +- Add parsing of gutterSettings. + +### Dependencies + +- Update `regex-syntax` to 0.8. + ## [Version 5.1.0](https://github.com/trishume/syntect/compare/v5.0.0...v5.1.0) (2023-08-01) ### Improvements diff --git a/Cargo.toml b/Cargo.toml index 3276f6c..62abe61 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ keywords = ["syntax", "highlighting", "highlighter", "colouring", "parsing"] categories = ["parser-implementations", "parsing", "text-processing"] readme = "Readme.md" license = "MIT" -version = "5.1.0" # remember to update html_root_url +version = "5.2.0" # remember to update html_root_url authors = ["Tristan Hume "] edition = "2021" exclude = [ diff --git a/src/lib.rs b/src/lib.rs index c5a1616..c44d7d0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -19,7 +19,7 @@ //! [`parsing`]: parsing/index.html //! [`highlighting`]: highlighting/index.html -#![doc(html_root_url = "https://docs.rs/syntect/5.1.0")] +#![doc(html_root_url = "https://docs.rs/syntect/5.2.0")] #[cfg(test)] #[macro_use]