Skip to content

Commit 232c430

Browse files
authored
Release v3.3.0 (updated Dafny to 4.6.0) (#468)
1 parent 1fd91e8 commit 232c430

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

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

3+
## 3.3.0
4+
- Add Dafny 4.6.0
5+
36
## 3.2.3
47
- Add Dafny 4.5.0
58

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.2.3",
5+
"version": "3.3.0",
66
"publisher": "dafny-lang",
77
"repository": {
88
"type": "git",
@@ -228,6 +228,7 @@
228228
"type": "string",
229229
"enum": [
230230
"latest stable release",
231+
"4.6.0",
231232
"4.5.0",
232233
"4.4.0",
233234
"4.3.0",

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.5.0';
52+
export const LatestVersion = '4.6.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)