Skip to content

Commit

Permalink
Release v3.2.2 (updated Dafny to 4.4.0) (#457)
Browse files Browse the repository at this point in the history
  • Loading branch information
robin-aws committed Dec 12, 2023
1 parent 471a39d commit 887a27c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release Notes

## 3.2.2
- Warn users about libraries not being available inside the Dafny IDE (https://github.com/dafny-lang/ide-vscode/pull/454)
- Fix: Dafny plugins working again. (https://github.com/dafny-lang/ide-vscode/pull/453)
- Fix formatting issues accidentally introduced in PR #450 (https://github.com/dafny-lang/ide-vscode/pull/451)
- Fix plugin arguments to Dafny server (https://github.com/dafny-lang/ide-vscode/pull/450)

## 3.2.1
- fix: relax .NET runtime version check (https://github.com/dafny-lang/ide-vscode/pull/443)

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.2.1",
"version": "3.2.2",
"publisher": "dafny-lang",
"repository": {
"type": "git",
Expand Down Expand Up @@ -228,6 +228,7 @@
"type": "string",
"enum": [
"latest stable release",
"4.4.0",
"4.3.0",
"4.2.0",
"4.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export namespace LanguageServerConstants {
export const LatestStable = 'latest stable release';
export const LatestNightly = 'latest nightly';
export const Custom = 'custom';
export const LatestVersion = '4.3.0';
export const LatestVersion = '4.4.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 887a27c

Please sign in to comment.