Bump version to v2.1.0

This commit is contained in:
Patrick Förster 2020-05-10 21:31:03 +02:00
parent 5c7326dbbd
commit aca54e2b2a
3 changed files with 18 additions and 3 deletions

View file

@ -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).
## [2.1.0] - 10.05.2020
### Added
- Add a new setting `latex.build.forwardSearchAfter` to trigger the forward search after building.
- Add option to write the log output to a log file
### Fixed
- Fix crash in symbols when encountering theorem descriptions ([#220](https://github.com/latex-lsp/texlab/issues/220))
- Fix a parsing error that caused `texlab` to take 100% CPU usage in some cases ([#212](https://github.com/latex-lsp/texlab/issues/212))
- Prevent building the same file multiple times at once
### Fixed
## [2.0.0] - 20.04.2020
### Added

2
Cargo.lock generated
View file

@ -2154,7 +2154,7 @@ dependencies = [
[[package]]
name = "texlab"
version = "2.0.0"
version = "2.1.0"
dependencies = [
"aovec 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"async-trait 0.1.30 (registry+https://github.com/rust-lang/crates.io-index)",

View file

@ -1,8 +1,8 @@
[package]
name = "texlab"
description = "LaTeX Language Server"
version = "2.0.0"
license = "GPLv3"
version = "2.1.0"
license = "GPL-3.0"
readme = "README.md"
authors = [
"Eric Förster <eric.foerster@outlook.com>",