diff --git a/CHANGELOG.md b/CHANGELOG.md index 419e13b75..1987782bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,22 @@ 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). +## [1.9.0] - 30.12.2019 + +### Added + +- Provide completion for local packages if `kpsewhich` is installed +- Add `.def` and `.bibtex` to the list of supported extensions +- Add basic support for `tectonic` + +### Fixed + +- Fix rendering of citations with DOIs ([#117](https://github.com/latex-lsp/texlab/issues/117)) +- Fix building of LaTeX files without `\begin{document}` ([#122](https://github.com/latex-lsp/texlab/issues/122)) +- Do not crash when editing remote files +- Run LaTeX linter when opening a file if enabled +- Handle `\hyphen` when rendering citations + ## [1.8.0] - 01.12.2019 ### Added diff --git a/Cargo.lock b/Cargo.lock index 9e6629901..ecd6f7225 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1980,7 +1980,7 @@ dependencies = [ [[package]] name = "texlab" -version = "1.8.0" +version = "1.9.0" dependencies = [ "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2142,7 +2142,7 @@ dependencies = [ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)", "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "texlab 1.8.0", + "texlab 1.9.0", "texlab-distro 0.1.0", "texlab-protocol 0.1.0", "tokio 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 9df7f7ea2..0bfcf0058 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "texlab" description = "LaTeX Language Server" -version = "1.8.0" +version = "1.9.0" license = "GPLv3" readme = "README.md" authors = [