Skip to content

Commit

Permalink
Release v3.4.0 (updated Dafny to 4.8.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikaelMayer committed Aug 30, 2024
1 parent bb86c95 commit 6b51572
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## 3.4.0
- Export ExtensionRuntime (or LanguageClient) for other extensions (https://github.com/dafny-lang/ide-vscode/pull/483)
- Add Dafny 4.8.0

## 3.3.1

- Dafny project file improvements (https://github.com/dafny-lang/ide-vscode/pull/475)
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.3.1",
"version": "3.4.0",
"publisher": "dafny-lang",
"repository": {
"type": "git",
Expand Down Expand Up @@ -230,6 +230,7 @@
"type": "string",
"enum": [
"latest stable release",
"4.8.0",
"4.7.0",
"4.6.0",
"4.5.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.7.0';
export const LatestVersion = '4.8.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 6b51572

Please sign in to comment.