Skip to content

Commit

Permalink
Release v3.4.3 (updated Dafny to 4.9.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikaelMayer committed Dec 23, 2024
1 parent 58c3528 commit 2f1f82b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Release Notes

## 3.4.3
- Added Dafny 4.9.1
- Support for @-syntax for attributes (https://github.com/dafny-lang/ide-vscode/pull/500)
Before:
![image](https://github.com/user-attachments/assets/2b54ad18-3bd8-45b0-874b-2bad954706af)
After:
![image](https://github.com/user-attachments/assets/5d4fe1c9-42df-4c55-8680-3e4a66749595)

## 3.4.2
- Added Dafny 4.9.0
- Fix binary copying to temporary folder on custom path (https://github.com/dafny-lang/ide-vscode/pull/502)
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.4.2",
"version": "3.4.3",
"publisher": "dafny-lang",
"repository": {
"type": "git",
Expand Down Expand Up @@ -230,6 +230,7 @@
"type": "string",
"enum": [
"latest stable release",
"4.9.1",
"4.9.0",
"4.8.1",
"4.8.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.9.0';
export const LatestVersion = '4.9.1';
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 2f1f82b

Please sign in to comment.