From a07db2c718b2fa225a5382db14618d5884978cb4 Mon Sep 17 00:00:00 2001 From: Tristan Hume Date: Mon, 20 Apr 2020 20:52:03 -0400 Subject: [PATCH] Bump to v4.1.1 --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8359ac46..933db5e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [Version 4.1.1](https://github.com/trishume/syntect/compare/v4.1.0...v4.1.1) (2020-04-20) + +- Properly handle backreferences in included contexts [#288](https://github.com/trishume/syntect/pull/288) + ## [Version 4.1.0](https://github.com/trishume/syntect/compare/v4.0.0...v4.1.0) (2020-03-30) - Make sure errors implement `Send` [#285](https://github.com/trishume/syntect/pull/285) diff --git a/Cargo.toml b/Cargo.toml index 046704e0..b0b2dde1 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 = "4.1.0" # remember to update html_root_url +version = "4.1.1" # remember to update html_root_url authors = ["Tristan Hume "] edition = "2018" exclude = [ diff --git a/src/lib.rs b/src/lib.rs index 34ac5c38..a1d0d687 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -13,7 +13,7 @@ //! Some docs have example code but a good place to look is the `syncat` example as well as the source code //! for the `easy` module in `easy.rs` as that shows how to plug the various parts together for common use cases. -#![doc(html_root_url = "https://docs.rs/syntect/4.1.0")] +#![doc(html_root_url = "https://docs.rs/syntect/4.1.1")] #[macro_use] extern crate lazy_static;