diff --git a/CHANGELOG.md b/CHANGELOG.md index 54a1d5b..1a5f082 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/package-lock.json b/package-lock.json index 8c15998..55ac12a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ide-vscode", - "version": "3.3.1", + "version": "3.4.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ide-vscode", - "version": "3.3.1", + "version": "3.4.0", "license": "MIT", "dependencies": { "cross-fetch": "^3.1.5", diff --git a/package.json b/package.json index efdd752..e01155a 100644 --- a/package.json +++ b/package.json @@ -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", @@ -230,6 +230,7 @@ "type": "string", "enum": [ "latest stable release", + "4.8.0", "4.7.0", "4.6.0", "4.5.0", diff --git a/src/constants.ts b/src/constants.ts index a524084..fe25774 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -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';