Bump extension version.

This commit is contained in:
Jacob Dufault 2017-06-14 00:13:26 -07:00
parent ca7d404a54
commit 053aa549f0

View File

@ -44,7 +44,7 @@ namespace {
std::vector<std::string> kEmptyArgs;
// Expected client version. We show an error if this doesn't match.
const int kExpectedClientVersion = 2;
const int kExpectedClientVersion = 3;
@ -1941,7 +1941,7 @@ bool QueryDbMainLoop(
if (config->clientVersion > kExpectedClientVersion)
out.params.message += "the cquery binary.";
else
out.params.message += "your extension client (VSIX file).";
out.params.message += "your extension client (VSIX file). Make sure to uninstall the cquery extension and restart vscode before reinstalling.";
out.Write(std::cout);
}