Skip to content

Commit

Permalink
Merge pull request #568 from coq-community/bump-version
Browse files Browse the repository at this point in the history
Bump version number
  • Loading branch information
maximedenes authored Aug 11, 2023
2 parents b1a8a37 + 8058994 commit 64af6a3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
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": "1.9.0",
"version": "1.9.1",
"repository": {
"type": "git",
"url": "https://github.com/coq-community/vscoq.git"
Expand Down
4 changes: 2 additions & 2 deletions client/src/utilities/versioning.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ export const checkVersion = (client: Client, context: ExtensionContext) => {
if(serverInfo !== undefined) {
const {name, version} = serverInfo;
client.writeToVscoq2Channel("Intialized server " + name + " [" + version + "]");
if(!checkCompat(extensionVersion, version)) {
window.showErrorMessage(name + ' ' + version + ' and vscoq ' + extensionVersion + ' are not compatible.');
if(extensionVersion !== version) {
window.showErrorMessage('This version of VsCoq requires version ' + extensionVersion + ' of ' + name);
}
} else {
client.writeToVscoq2Channel("Could not run compatibility tests: failed to get serverInfo");
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
ocamlPackages.buildDunePackage {
duneVersion = "3";
pname = "vscoq-language-server";
version = "1.9.0";
version = "1.9.1";
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 @@ -39,7 +39,7 @@ let conf_request_id = 3456736879

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

type lsp_event =
Expand Down

0 comments on commit 64af6a3

Please sign in to comment.