Skip to content

Commit 1b6dd8b

Browse files
authored
Release v3.4.4 (updated Dafny to 4.10.0) (#523)
1 parent 9eb1115 commit 1b6dd8b

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release Notes
22

3+
## 3.4.4
4+
- Added Dafny 4.10.0
5+
- Enable starting using a cached nigthly (https://github.com/dafny-lang/ide-vscode/pull/519)
6+
When using latest-nightly, enable starting using a cached nigthly when there is no internet connection
7+
38
## 3.4.3
49
- Added Dafny 4.9.1
510
- Support for @-syntax for attributes (https://github.com/dafny-lang/ide-vscode/pull/500)

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "ide-vscode",
33
"displayName": "Dafny",
44
"description": "Dafny for Visual Studio Code",
5-
"version": "3.4.3",
5+
"version": "3.4.4",
66
"publisher": "dafny-lang",
77
"repository": {
88
"type": "git",
@@ -230,6 +230,7 @@
230230
"type": "string",
231231
"enum": [
232232
"latest stable release",
233+
"4.10.0",
233234
"4.9.1",
234235
"4.9.0",
235236
"4.8.1",

src/constants.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export namespace LanguageServerConstants {
4949
export const LatestStable = 'latest stable release';
5050
export const LatestNightly = 'latest nightly';
5151
export const Custom = 'custom';
52-
export const LatestVersion = '4.9.1';
52+
export const LatestVersion = '4.10.0';
5353
export const UnknownVersion = 'unknown';
5454
export const DafnyGitUrl = 'https://github.com/dafny-lang/dafny.git';
5555
export const DownloadBaseUri = 'https://github.com/dafny-lang/dafny/releases/download';

0 commit comments

Comments
 (0)