Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version for release. #698

Merged
merged 1 commit into from
Dec 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "VsCoq is an extension for Visual Studio Code with support for the Coq Proof Assistant",
"publisher": "maximedenes",
"license": "MIT",
"version": "2.0.2",
"version": "2.0.3",
"repository": {
"type": "git",
"url": "https://github.com/coq-community/vscoq.git"
Expand Down
5 changes: 3 additions & 2 deletions client/src/utilities/versioning.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
const {name, version} = serverInfo;
Client.writeToVscoq2Channel("[Versioning] Intialized server " + name + " [" + version + "]");
if(!checkCompat(extensionVersion, version)) {
window.showErrorMessage('This version of VsCoq requires version ' + versionRequirements[extensionVersion] + ' of ' + name + '. Found version: ' + version);
window.showErrorMessage('This version of VsCoq requires version ' + versionRequirements[extensionVersion] + ' of ' + name + '. Found version: ' + version + '. Please upgrade the language server.');
}
} else {
Client.writeToVscoq2Channel("Could not run compatibility tests: failed to get serverInfo");
Expand All @@ -29,9 +29,10 @@

/* Version requirements for the client. Syntax is client version : minimum server version */
const versionRequirements : VersionReq = {
'2.0.0': '2.0.0',

Check warning on line 32 in client/src/utilities/versioning.ts

View workflow job for this annotation

GitHub Actions / dev-setup-opam (ubuntu-latest, 4.13.x)

Object Literal Property name `2.0.0` must match one of the following formats: camelCase

Check warning on line 32 in client/src/utilities/versioning.ts

View workflow job for this annotation

GitHub Actions / install-windows

Object Literal Property name `2.0.0` must match one of the following formats: camelCase

Check warning on line 32 in client/src/utilities/versioning.ts

View workflow job for this annotation

GitHub Actions / install-opam (ubuntu-latest, 4.13.x)

Object Literal Property name `2.0.0` must match one of the following formats: camelCase
'2.0.1': '2.0.0',

Check warning on line 33 in client/src/utilities/versioning.ts

View workflow job for this annotation

GitHub Actions / dev-setup-opam (ubuntu-latest, 4.13.x)

Object Literal Property name `2.0.1` must match one of the following formats: camelCase

Check warning on line 33 in client/src/utilities/versioning.ts

View workflow job for this annotation

GitHub Actions / install-windows

Object Literal Property name `2.0.1` must match one of the following formats: camelCase

Check warning on line 33 in client/src/utilities/versioning.ts

View workflow job for this annotation

GitHub Actions / install-opam (ubuntu-latest, 4.13.x)

Object Literal Property name `2.0.1` must match one of the following formats: camelCase
'2.0.2': '2.0.0'
'2.0.2': '2.0.0',

Check warning on line 34 in client/src/utilities/versioning.ts

View workflow job for this annotation

GitHub Actions / dev-setup-opam (ubuntu-latest, 4.13.x)

Object Literal Property name `2.0.2` must match one of the following formats: camelCase

Check warning on line 34 in client/src/utilities/versioning.ts

View workflow job for this annotation

GitHub Actions / install-windows

Object Literal Property name `2.0.2` must match one of the following formats: camelCase

Check warning on line 34 in client/src/utilities/versioning.ts

View workflow job for this annotation

GitHub Actions / install-opam (ubuntu-latest, 4.13.x)

Object Literal Property name `2.0.2` must match one of the following formats: camelCase
'2.0.3': '2.0.3'

Check warning on line 35 in client/src/utilities/versioning.ts

View workflow job for this annotation

GitHub Actions / dev-setup-opam (ubuntu-latest, 4.13.x)

Object Literal Property name `2.0.3` must match one of the following formats: camelCase

Check warning on line 35 in client/src/utilities/versioning.ts

View workflow job for this annotation

GitHub Actions / install-windows

Object Literal Property name `2.0.3` must match one of the following formats: camelCase

Check warning on line 35 in client/src/utilities/versioning.ts

View workflow job for this annotation

GitHub Actions / install-opam (ubuntu-latest, 4.13.x)

Object Literal Property name `2.0.3` must match one of the following formats: camelCase
};

//We will add version ranges as we start releasing
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
ocamlPackages.buildDunePackage {
duneVersion = "3";
pname = "vscoq-language-server";
version = "2.0.2";
version = "2.0.3";
src = ./language-server;
buildInputs = [
coq
Expand Down
2 changes: 1 addition & 1 deletion language-server/vscoqtop/lspManager.ml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ let conf_request_id = max_int

let server_info = InitializeResult.create_serverInfo
~name:"vscoq-language-server"
~version:"2.0.2"
~version:"2.0.3"
()

type lsp_event =
Expand Down
Loading