diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b07baf..8d8d224 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Release Notes +## 3.2.0 +- Add Dafny 4.3.0 +- Update LSP client to 9.0.0 (https://github.com/dafny-lang/ide-vscode/pull/439) + The main driver of this update is that it improves error handling +- Let the extension use the Dafny server to track changes in dfyconfig (https://github.com/dafny-lang/ide-vscode/pull/435) +- Fix the removal of verification tests (https://github.com/dafny-lang/ide-vscode/pull/436) +- Make status bar forward compatible with upcoming Dafny release (https://github.com/dafny-lang/ide-vscode/pull/432) +- Fix: support for spaces in paths (https://github.com/dafny-lang/ide-vscode/pull/431) +- Bump semver from 7.3.7 to 7.5.4 (https://github.com/dafny-lang/ide-vscode/pull/411) +- Always show all verifiable symbols in the test panels (https://github.com/dafny-lang/ide-vscode/pull/428) +- Prevent verification as tests UI from becoming unresponsive (https://github.com/dafny-lang/ide-vscode/pull/421) + ## 3.1.2 - Add Dafny 4.2.0 - Update README.md (https://github.com/dafny-lang/ide-vscode/pull/407) diff --git a/package-lock.json b/package-lock.json index 19d8926..7821156 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ide-vscode", - "version": "3.1.2", + "version": "3.2.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ide-vscode", - "version": "3.1.2", + "version": "3.2.0", "license": "MIT", "dependencies": { "cross-fetch": "^3.1.5", diff --git a/package.json b/package.json index f51453a..729893a 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "ide-vscode", "displayName": "Dafny", "description": "Dafny for Visual Studio Code", - "version": "3.1.2", + "version": "3.2.0", "publisher": "dafny-lang", "repository": { "type": "git", @@ -228,6 +228,7 @@ "type": "string", "enum": [ "latest stable release", + "4.3.0", "4.2.0", "4.1.0", "4.0.0", diff --git a/src/constants.ts b/src/constants.ts index 5a4d229..ae40eae 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -48,7 +48,7 @@ export namespace LanguageServerConstants { export const LatestStable = 'latest stable release'; export const LatestNightly = 'latest nightly'; export const Custom = 'custom'; - export const LatestVersion = '4.2.0'; + export const LatestVersion = '4.3.0'; export const UnknownVersion = 'unknown'; export const DafnyGitUrl = 'https://github.com/dafny-lang/dafny.git'; export const DownloadBaseUri = 'https://github.com/dafny-lang/dafny/releases/download';