Skip to content

Commit

Permalink
Release v3.2.0 (updated Dafny to 4.3.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikaelMayer committed Sep 29, 2023
1 parent 334d2b2 commit 6bf47ce
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -228,6 +228,7 @@
"type": "string",
"enum": [
"latest stable release",
"4.3.0",
"4.2.0",
"4.1.0",
"4.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit 6bf47ce

Please sign in to comment.