Skip to content

Commit 101a4be

Browse files
authored
Merge pull request #1153 from rocq-prover/release-2.3.1
Release 2.3.1
2 parents 7ef67e0 + f48ea0e commit 101a4be

5 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/publish-server.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
cd language-server
5454
git config --global user.name vscoqbot
5555
git config --global user.email vscoqbot@inria.fr
56-
opam publish --no-confirmation --no-browser -v $VERSION https://github.com/rocq-prover/vsrocq/releases/download/$VERSION_SLUG/vsrocq-language-server-$VERSION.tar.gz vsrocq-language-server.opam
56+
opam publish --no-confirmation --no-browser -v $VERSION https://github.com/rocq-prover/vsrocq/releases/download/$VERSION_SLUG/vsrocq-language-server-$VERSION.tar.gz vsrocq-language-server.opam vscoq-language-server.opam
5757
5858
- name: Publish prerelease on coq/opam
5959
if: ${{ inputs.prerelease }}
@@ -64,4 +64,4 @@ jobs:
6464
cd language-server
6565
git config --global user.name vscoqbot
6666
git config --global user.email vscoqbot@inria.fr
67-
opam publish --no-confirmation --no-browser --packages-directory=extra-dev/packages --repo=rocq-prover/opam -v $VERSION https://github.com/rocq-prover/vsrocq/releases/download/$VERSION_SLUG/vsrocq-language-server-$VERSION.tar.gz vsrocq-language-server.opam
67+
opam publish --no-confirmation --no-browser --packages-directory=extra-dev/packages --repo=rocq-prover/opam -v $VERSION https://github.com/rocq-prover/vsrocq/releases/download/$VERSION_SLUG/vsrocq-language-server-$VERSION.tar.gz vsrocq-language-server.opam vscoq-language-server.opam

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "VsRocq is an extension for Visual Studio Code with support for the Rocq Prover",
55
"publisher": "rocq-prover",
66
"license": "MIT",
7-
"version": "2.3.0",
7+
"version": "2.3.1",
88
"repository": {
99
"type": "git",
1010
"url": "https://github.com/rocq-prover/vsrocq.git"

client/src/utilities/versioning.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ const versionRequirements : VersionReq = {
5353
'2.2.4': '2.2.4',
5454
'2.2.5': '2.2.5',
5555
'2.2.6': '2.2.6',
56-
'2.3.0': '2.3.0'
56+
'2.3.0': '2.3.0',
57+
'2.3.1': '2.3.0'
5758
};
5859

5960
//We will add version ranges as we start releasing

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
vscodeExtPublisher = "rocq-prover";
2222
vscodeExtName = "vsrocq";
2323
vscodeExtUniqueId = "rocq-prover.vsrocq";
24-
vsrocq_version = "2.3.0";
24+
vsrocq_version = "2.3.1";
2525
rocq = rocq-master.packages.${system};
2626
in rec {
2727
formatter = nixpkgs.legacyPackages.${system}.alejandra;

language-server/vsrocqtop/lspManager.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ let conf_request_id = max_int
5454

5555
let server_info = InitializeResult.create_serverInfo
5656
~name:"vsrocq-language-server"
57-
~version:"2.3.0"
57+
~version:"2.3.1"
5858
()
5959

6060
type lsp_event =

0 commit comments

Comments
 (0)