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

Release v3.2.0 (updated Dafny to 4.3.0) #440

Merged
merged 1 commit into from
Sep 29, 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
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
Loading