Skip to content

Commit d5c66ac

Browse files
committed
Upgrade coq-lsp in actions to v0.2.2 for arg in getGoals
1 parent 415f71d commit d5c66ac

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build-and-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020

2121
env:
2222
coqlsp-path: "coq-lsp"
23-
coqlsp-version: "0.1.9+8.19"
23+
coqlsp-version: "0.2.2+8.19"
2424
artifact-name: ubuntu-latest-build
2525

2626
jobs:
@@ -60,7 +60,7 @@ jobs:
6060
env:
6161
OPAMYES: true
6262
run: |
63-
opam install coq-lsp.0.1.9+8.19
63+
opam install coq-lsp.0.2.2+8.19
6464
eval $(opam env)
6565
6666
- name: Install Node.js

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
## Requirements
3232

33-
* `coq-lsp` version `0.1.9+8.19` is currently required to run the extension.
33+
* `coq-lsp` version `0.2.2+8.19` is currently required to run the extension.
3434

3535
## Brief technical overview
3636

@@ -68,7 +68,7 @@ As soon as at least one valid proof is found, it is substituted in the editor an
6868

6969
To run the extension, you must install a `coq-lsp` server. Depending on the system used in your project, you should install it using `opam` or `nix`. A well-configured `nix` project should have the `coq-lsp` server installed as a dependency. To install `coq-lsp` using `opam`, you can use the following commands:
7070
```bash
71-
opam pin add coq-lsp 0.1.9+8.19
71+
opam pin add coq-lsp 0.2.2+8.19
7272
opam install coq-lsp
7373
```
7474
For more information on how to install `coq-lsp` please refer to [coq-lsp](https://github.com/ejgallego/coq-lsp).

src/coqLsp/coqLspConfig.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export interface CoqLspClientConfig {
2121
export namespace CoqLspConfig {
2222
export function createServerConfig(): CoqLspServerConfig {
2323
return {
24-
client_version: "0.1.9",
24+
client_version: "0.2.2",
2525
eager_diagnostics: true,
2626
goal_after_tactic: false,
2727
show_coq_info_messages: false,

0 commit comments

Comments
 (0)