Skip to content

Commit 1651081

Browse files
authoredFeb 7, 2024
Merge pull request #518 from Enselic/prepare-release
Prepare for v5.2.0
2 parents 5a9c472 + 6c365b4 commit 1651081

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed
 

‎CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [Version 5.2.0](https://github.com/trishume/syntect/compare/v5.1.0...v5.2.0) (2024-02-07)
4+
5+
### Improvements
6+
7+
- Eliminate syntect library's dependency on serde's "derive" feature. Increases build parallelism.
8+
- Add parsing of gutterSettings.
9+
10+
### Dependencies
11+
12+
- Update `regex-syntax` to 0.8.
13+
314
## [Version 5.1.0](https://github.com/trishume/syntect/compare/v5.0.0...v5.1.0) (2023-08-01)
415

516
### Improvements

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ keywords = ["syntax", "highlighting", "highlighter", "colouring", "parsing"]
77
categories = ["parser-implementations", "parsing", "text-processing"]
88
readme = "Readme.md"
99
license = "MIT"
10-
version = "5.1.0" # remember to update html_root_url
10+
version = "5.2.0" # remember to update html_root_url
1111
authors = ["Tristan Hume <tristan@thume.ca>"]
1212
edition = "2021"
1313
exclude = [

‎src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
//! [`parsing`]: parsing/index.html
2020
//! [`highlighting`]: highlighting/index.html
2121
22-
#![doc(html_root_url = "https://docs.rs/syntect/5.1.0")]
22+
#![doc(html_root_url = "https://docs.rs/syntect/5.2.0")]
2323

2424
#[cfg(test)]
2525
#[macro_use]

0 commit comments

Comments
 (0)
Please sign in to comment.