diff --git a/CHANGELOG.md b/CHANGELOG.md index 8008720d..007f3448 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [5.17.0] - 2024-06-23 + +### Added + +- Add label commands from `zref` and `zref-clever` to the list of default label commands + ([#1140](https://github.com/latex-lsp/texlab/pull/1140)) +- Add `texlab.experimental.labelDefinitionPrefixes` and + `texlab.experimental.labelReferencePrefixes` options ([#1139](https://github.com/latex-lsp/texlab/pull/1139)) + ## [5.16.1] - 2024-05-25 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 34c502ae..09847a2a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1550,7 +1550,7 @@ dependencies = [ [[package]] name = "texlab" -version = "5.16.1" +version = "5.17.0" dependencies = [ "anyhow", "base-db", diff --git a/crates/texlab/Cargo.toml b/crates/texlab/Cargo.toml index ec8cedf0..fa419413 100644 --- a/crates/texlab/Cargo.toml +++ b/crates/texlab/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "texlab" description = "LaTeX Language Server" -version = "5.16.1" +version = "5.17.0" license.workspace = true readme = "README.md" authors.workspace = true