You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Bump the extension to the next minor beta version for development. Increments the minor version in package.json, package-lock.json, and adds a new unreleased changelog section. USE FOR: version bump, increment version, prepare beta, new beta version, start new version, bump minor version, prep for new features.
4
+
---
5
+
6
+
# Version Bump
7
+
8
+
Increment the extension's minor version for a new beta development cycle.
9
+
10
+
## Workflow
11
+
12
+
1.**Read current version** from `package.json` (`version` field). Parse as `major.minor.patch`.
13
+
2.**Compute new version**: increment `minor` by 1, reset `patch` to 0. Example: `1.12.0` → `1.13.0`.
14
+
3.**Update version in three places**:
15
+
-`package.json` — `"version"` field
16
+
-`package-lock.json` — top-level `"version"` field AND the `packages[""]` → `"version"` field (two occurrences total)
17
+
4.**Add changelog section** in `CHANGELOG.md`: insert `## [{new version}] - Unreleased` on a blank line immediately after the `> **Note**:` blockquote and before the previous release heading.
18
+
5.**Commit**: `git add package.json package-lock.json CHANGELOG.md && git commit -m "Increment version to v{new version}"`
19
+
6.**Push**: ask the user for confirmation, then `git push origin main`.
20
+
21
+
## Rules
22
+
23
+
- Odd minor versions are beta/test versions (per the changelog note). This is expected.
24
+
- Do not modify any other files.
25
+
- Do not run `npm install` — edit `package-lock.json` directly to keep the lockfile version consistent.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+19-1Lines changed: 19 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,10 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
> **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.
9
9
10
-
## [1.11.1] - Unreleased
10
+
## [1.13.0] - Unreleased
11
11
12
12
### Added:
13
13
14
+
- Quick Fixes: Enable local language model fix now adds or updates `languageModel.enabled: true` for supported plugins only
15
+
16
+
### Fixed:
17
+
18
+
- Diagnostics: Language model diagnostic now correctly targets plugins that can use a local language model (OpenAIMockResponsePlugin, OpenApiSpecGeneratorPlugin, TypeSpecGeneratorPlugin) and shows as an informational hint instead of a warning
19
+
20
+
## [1.12.0] - 2026-01-29
21
+
22
+
### Added:
23
+
24
+
- Setting: Added `devProxyPath` setting to specify custom path to Dev Proxy executable
25
+
- Detection: Added auto-detection fallback using login shell and common installation paths
0 commit comments