Skip to content

Commit

Permalink
Upgrade coq-lsp in actions to v0.2.2 for arg in getGoals
Browse files Browse the repository at this point in the history
  • Loading branch information
K-dizzled committed Oct 16, 2024
1 parent 415f71d commit d5c66ac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:

env:
coqlsp-path: "coq-lsp"
coqlsp-version: "0.1.9+8.19"
coqlsp-version: "0.2.2+8.19"
artifact-name: ubuntu-latest-build

jobs:
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
env:
OPAMYES: true
run: |
opam install coq-lsp.0.1.9+8.19
opam install coq-lsp.0.2.2+8.19
eval $(opam env)
- name: Install Node.js
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

## Requirements

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

## Brief technical overview

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

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:
```bash
opam pin add coq-lsp 0.1.9+8.19
opam pin add coq-lsp 0.2.2+8.19
opam install coq-lsp
```
For more information on how to install `coq-lsp` please refer to [coq-lsp](https://github.com/ejgallego/coq-lsp).
Expand Down
2 changes: 1 addition & 1 deletion src/coqLsp/coqLspConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export interface CoqLspClientConfig {
export namespace CoqLspConfig {
export function createServerConfig(): CoqLspServerConfig {
return {
client_version: "0.1.9",
client_version: "0.2.2",
eager_diagnostics: true,
goal_after_tactic: false,
show_coq_info_messages: false,
Expand Down

0 comments on commit d5c66ac

Please sign in to comment.