Skip to content

Commit d95b4c3

Browse files
committed
Bump version to 0.18.2 and update changelog with installation fixes
1 parent 3a75a99 commit d95b4c3

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
> **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.
99
10-
## [0.18.1] - 2025-02-27
10+
## [0.18.2] - 2025-03-03
1111

1212
### Added:
1313

@@ -31,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3131
- Diagnostics: Fixed languageModel property being reported as invalid config section
3232
- Install: Fixed broken link for Linux
3333
- Install: Updated brew tap command to reference new tap location
34+
- Install: Fixed incorrect homebrew formulae name
3435

3536
## [0.16.0] - 2025-02-03
3637

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "dev-proxy-toolkit",
33
"displayName": "Dev Proxy Toolkit",
44
"description": "Makes it easy to create and update Dev Proxy configuration files.",
5-
"version": "0.18.1",
5+
"version": "0.18.2",
66
"publisher": "garrytrinder",
77
"engines": {
88
"vscode": "^1.89.0"

src/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const registerCommands = (context: vscode.ExtensionContext, configuration
3434

3535
// we are on macos so we can use brew
3636
if (platform === 'darwin') {
37-
const id = versionPreference === VersionPreference.Stable ? 'devproxy' : 'devproxy-beta';
37+
const id = versionPreference === VersionPreference.Stable ? 'dev-proxy' : 'dev-proxy-beta';
3838
try {
3939
await executeCommand('brew tap dotnet/dev-proxy');
4040
await executeCommand(`brew install ${id}`);

0 commit comments

Comments
 (0)