• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Changelog
2
3All notable changes to this project will be documented in this file.
4
5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
8## [Unreleased]
9
10## [0.11.0] - 2020-11-30
11
12There is now a [code of conduct](https://github.com/brendanzab/codespan/blob/master/CODE_OF_CONDUCT.md)
13and a [contributing guide](https://github.com/brendanzab/codespan/blob/master/CONTRIBUTING.md).
14
15### Changed
16
17-   The error type in `codespan-lsp` is replaced with the error type in the `codespan-reporting` crate.
18    The error type is now `codespan_reporting::file::Error`.
19-   The `lsp-types` dependency was updated to use the version range: `>=0.84, <0.85`.
20    Compatibility was broken as a result of the [clarified numeric types] that this crate depended on.
21-   The `character_to_line_offset` function was made private to reduce the chance of future public breakages.
22
23[clarified numeric types]: https://github.com/gluon-lang/lsp-types/pull/186
24
25## [0.10.1] - 2020-08-17
26
27### Changed
28
29-   The `lsp-types` dependency was updated to use a version range: `>=0.70, <0.80`,
30    which includes the latest updates in `0.79.0`.
31
32## [0.10.0] - 2020-07-20
33
34### Changed
35
36-   `codespan-lsp` only requires `codespan-reporting`, removing its `codespan` dependency.
37-   The `lsp-types` dependency was updated to use a version range: `>=0.70,<0.78`,
38    which includes the latest updates in `0.77.0`.
39
40## [0.9.5] - 2020-06-24
41## [0.9.4] - 2020-05-18
42
43## [0.9.3] - 2020-04-29
44
45### Changed
46
47-   The `lsp-types` dependency was updated to use a version range: `>=0.70,<0.75`,
48    which includes the latest updates in `0.74.0`.
49
50## [0.9.2] - 2020-03-29
51## [0.9.1] - 2020-03-23
52## [0.9.0] - 2020-03-11
53
54### Changed
55
56-   The `lsp-types` dependency was updated to use a version range: `>=0.70,<0.74`,
57    which includes the latest updates in `0.73.0`.
58
59### Removed
60
61-   `codespan_lsp` no longer depends on `codespan_reporting`.
62-   `make_lsp_severity` and `make_lsp_diagnostic` were removed.
63    It's pretty hard to map the diagnostic structure to LSP diagnostics - we
64    recommend implementing this as an application-specific concern.
65
66## [0.8.0] - 2020-02-24
67## [0.7.0] - 2020-01-06
68## [0.6.0] - 2019-12-18
69## [0.5.0] - 2019-10-02
70## [0.4.1] - 2019-08-25
71## [0.4.0] - 2019-08-22
72## [0.3.0] - 2019-05-01
73## [0.2.1] - 2019-02-26
74## [0.2.0] - 2018-10-11
75
76[Unreleased]: https://github.com/brendanzab/codespan/compare/v0.11.0...HEAD
77[0.11.0]: https://github.com/brendanzab/codespan/compare/v0.10.1..v0.11.0
78[0.10.1]: https://github.com/brendanzab/codespan/compare/v0.10.0..v0.10.1
79[0.10.0]: https://github.com/brendanzab/codespan/compare/v0.9.5...v0.10.0
80[0.9.5]: https://github.com/brendanzab/codespan/compare/v0.9.4...v0.9.5
81[0.9.4]: https://github.com/brendanzab/codespan/compare/v0.9.3...v0.9.4
82[0.9.3]: https://github.com/brendanzab/codespan/compare/v0.9.2...v0.9.3
83[0.9.2]: https://github.com/brendanzab/codespan/compare/v0.9.1...v0.9.2
84[0.9.1]: https://github.com/brendanzab/codespan/compare/v0.9.0...v0.9.1
85[0.9.0]: https://github.com/brendanzab/codespan/compare/v0.8.0...v0.9.0
86[0.8.0]: https://github.com/brendanzab/codespan/compare/v0.7.0...v0.8.0
87[0.7.0]: https://github.com/brendanzab/codespan/compare/v0.6.0...v0.7.0
88[0.6.0]: https://github.com/brendanzab/codespan/compare/v0.5.0...v0.6.0
89[0.5.0]: https://github.com/brendanzab/codespan/compare/v0.4.1...v0.5.0
90[0.4.1]: https://github.com/brendanzab/codespan/compare/v0.4.0...v0.4.1
91[0.4.0]: https://github.com/brendanzab/codespan/compare/v0.3.0...v0.4.0
92[0.3.0]: https://github.com/brendanzab/codespan/compare/v0.2.1...v0.3.0
93[0.2.1]: https://github.com/brendanzab/codespan/compare/v0.2.0...v0.2.1
94[0.2.0]: https://github.com/brendanzab/codespan/releases/tag/v0.2.0
95