From bd162f9a6138ae99112b62a17f11b7907a99e11c Mon Sep 17 00:00:00 2001 From: Garry Trinder Date: Mon, 3 Mar 2025 16:10:21 +0000 Subject: [PATCH] Bump version to 0.18.2 and update changelog with installation fixes --- CHANGELOG.md | 3 ++- package-lock.json | 4 ++-- package.json | 2 +- src/commands.ts | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f6eec61..403e4f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 > **Note**: odd version numbers, for example, `0.13.0`, are not included in this changelog. They are used to test the new features and fixes before the final release. -## [0.18.1] - 2025-02-27 +## [0.18.2] - 2025-03-03 ### Added: @@ -31,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Diagnostics: Fixed languageModel property being reported as invalid config section - Install: Fixed broken link for Linux - Install: Updated brew tap command to reference new tap location +- Install: Fixed incorrect homebrew formulae name ## [0.16.0] - 2025-02-03 diff --git a/package-lock.json b/package-lock.json index f9e4b32..3bcdf2c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "dev-proxy-toolkit", - "version": "0.18.1", + "version": "0.18.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "dev-proxy-toolkit", - "version": "0.18.1", + "version": "0.18.2", "dependencies": { "json-to-ast": "^2.1.0" }, diff --git a/package.json b/package.json index 7499f78..8d9cec6 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "dev-proxy-toolkit", "displayName": "Dev Proxy Toolkit", "description": "Makes it easy to create and update Dev Proxy configuration files.", - "version": "0.18.1", + "version": "0.18.2", "publisher": "garrytrinder", "engines": { "vscode": "^1.89.0" diff --git a/src/commands.ts b/src/commands.ts index 6d3804d..d9b58f9 100644 --- a/src/commands.ts +++ b/src/commands.ts @@ -34,7 +34,7 @@ export const registerCommands = (context: vscode.ExtensionContext, configuration // we are on macos so we can use brew if (platform === 'darwin') { - const id = versionPreference === VersionPreference.Stable ? 'devproxy' : 'devproxy-beta'; + const id = versionPreference === VersionPreference.Stable ? 'dev-proxy' : 'dev-proxy-beta'; try { await executeCommand('brew tap dotnet/dev-proxy'); await executeCommand(`brew install ${id}`);