Skip to content

Commit

Permalink
Merge pull request #812 from ejgallego/release_0_2_0
Browse files Browse the repository at this point in the history
[meta] Release 0.2.0
  • Loading branch information
ejgallego authored Aug 29, 2024
2 parents 8f38de6 + 2260f2d commit c000462
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# unreleased
------------
# coq-lsp 0.2.0: From Green to Blue
-----------------------------------

- [deps] merge serlib into coq-lsp. This allow us to drop the SerAPI
dependency, and will greatly easy the development of tools that
Expand Down
2 changes: 2 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -386,12 +386,14 @@ The checklist for the release as of today is the following:
### Client:
- update the client changelog at `editor/code/CHANGELOG.md`, commit
- update the version number at `editor/code/package.json`
- for the `main` branch: `dune release tag $coq_lsp_version`
- check with `vsce ls` that the client contents are OK
- `vsce publish`
### Server:
- update the version number at `fleche/version.ml`
- sync branches for previous Coq versions, using `git merge`, test and push to CI.
- `dune release tag` for each `$coq_lsp_version+$coq_version`
- `dune release` for each version that should to the main opam repos
Expand Down
32 changes: 32 additions & 0 deletions editor/code/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
# coq-lsp 0.2.0: From Green to Blue
-----------------------------------

- [fleche] Preserve view hint across document changes. With this
change, we get local continuous checking mode when the view-port
heuristic is enabled (@ejgallego, #748)
- [vscode] Fix focus race when a Coq file is in column 2 (@ejgallego,
#755, cc: #722, #725)
- [hover] Show input howto for unicode characters on hover
(@ejgallego, Léo Stefanesco, #756)
- [lsp] [definition] Support for jump to definition across workspace
files. The location information is obtained from `.glob` files, so
it is often not perfect. (@ejgallego, #762, fixes #317)
- [lsp] [hover] Show full name and provenance of identifiers
(@ejgallego, #762)
- [lsp] [definition] Try also to resolve and locate module imports
(@ejgallego, #764)
- [code] Don't start server on extension activation, unless an editor
we own is active. We also auto-start the server if a document that
we own is opened later (@ejgallego, #758, fixes #750)
- [hover] New option `show_universes_on_hover` that will display
universe data on hover (@ejgallego, @SkySkimmer, #666)
- [hover] New plugin `unidiff` that will elaborate a summary of
universe data a file, in particular regarding universes added at
`Qed` time (@ejgallego, #773)
- [fleche] Support meta-command `Abort All` (@ejgallego, #774, fixes
#550)
- [lsp] [petanque] Allow acces to `petanque` protocol from the lsp
server (@ejgallego, #778)

See server changelog for full server-side changes.

# coq-lsp 0.1.10: Hasta el 40 de Mayo _en effect_...
----------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion editor/code/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "coq-lsp",
"displayName": "Coq LSP",
"description": "Coq LSP provides native vsCode support for checking Coq proof documents",
"version": "0.2.0-dev",
"version": "0.2.0",
"contributors": [
"Emilio Jesús Gallego Arias <e@x80.org>",
"Ali Caglayan <alizter@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion fleche/version.ml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ type t = string

(************************************************************************)
(* UPDATE VERSION HERE *)
let server = "0.2.0-dev"
let server = "0.2.0"
(* UPDATE VERSION HERE *)
(************************************************************************)

0 comments on commit c000462

Please sign in to comment.