Skip to content

Commit

Permalink
Release v3.1.2 (updated Dafny to 4.2.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
keyboardDrummer committed Jul 20, 2023
1 parent 852cd61 commit b7fad6f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Release Notes

## 3.1.2
- Add Dafny 4.2.0
- Update README.md (https://github.com/dafny-lang/ide-vscode/pull/407)
- Fix: Empty ghost diagnostics no longer ignored (https://github.com/dafny-lang/ide-vscode/pull/399)
- Chore: Support labels with primes and question marks (https://github.com/dafny-lang/ide-vscode/pull/398)
- Chore: Better description of automatic verification (https://github.com/dafny-lang/ide-vscode/pull/397)
- Fixes "this" highlight (https://github.com/dafny-lang/ide-vscode/pull/396)
- Support new IDE states, parsing and preparing verification (https://github.com/dafny-lang/ide-vscode/pull/392)

## 3.1.1
- Add Dafny 4.1.0
- chore: Empty releases (https://github.com/dafny-lang/ide-vscode/pull/387)
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.

6 changes: 3 additions & 3 deletions 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.1",
"version": "3.1.2",
"publisher": "dafny-lang",
"repository": {
"type": "git",
Expand Down Expand Up @@ -216,6 +216,7 @@
"type": "string",
"enum": [
"latest",
"4.2.0",
"4.1.0",
"4.0.0",
"3.13.1",
Expand Down Expand Up @@ -288,8 +289,7 @@
}
]
},
"activationEvents": [
],
"activationEvents": [],
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
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';
export const LatestNightly = 'latest nightly';
export const Custom = 'custom';
export const LatestVersion = '4.1.0';
export const LatestVersion = '4.2.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 b7fad6f

Please sign in to comment.