diff --git a/CHANGELOG.md b/CHANGELOG.md index 13b1cc799..4f436c33b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ 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). +## [3.3.2] - 26.02.2022 + +### Fixed + +- Parse command definitions with optional arguments correctly +- Fix detection of command definitions in completion ([latex-lsp/texlab-vscode#618](https://github.com/latex-lsp/texlab-vscode/issues/618)) +- Watch aux directory by default for changes ([#563](https://github.com/latex-lsp/texlab/issues/563)) +- Do not allow multi-line keys in the grammar ([#559](https://github.com/latex-lsp/texlab/issues/559)) +- Use `textEdit` property for snippets ([#558](https://github.com/latex-lsp/texlab/issues/558)) +- Allow simple commands as text argument for most commands ([#557](https://github.com/latex-lsp/texlab/issues/557)) +- Treat `\renewcommand` as an environment definition ([#556](https://github.com/latex-lsp/texlab/issues/556)) +- Do not return `null` from forward search request +- Make directory path in `\import` optional ([#540](https://github.com/latex-lsp/texlab/issues/540)) +- Do not spam workspace/configuration requests ([#533](https://github.com/latex-lsp/texlab/issues/533)) + ## [3.3.1] - 10.11.2021 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index cec248857..a6ffc4530 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1761,7 +1761,7 @@ dependencies = [ [[package]] name = "texlab" -version = "3.3.1" +version = "3.3.2" dependencies = [ "anyhow", "bibutils-sys", diff --git a/Cargo.toml b/Cargo.toml index 1b5c5a4f8..ad6a33347 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "texlab" description = "LaTeX Language Server" -version = "3.3.1" +version = "3.3.2" license = "GPL-3.0" readme = "README.md" authors = [ diff --git a/texlab.pdf b/texlab.pdf index 289c5f195..162683cb4 100644 Binary files a/texlab.pdf and b/texlab.pdf differ