diff --git a/vscode/CHANGELOG.md b/vscode/CHANGELOG.md index e7e93c12aac6..cdca48f1dc7f 100644 --- a/vscode/CHANGELOG.md +++ b/vscode/CHANGELOG.md @@ -6,6 +6,14 @@ This is a log of all notable changes to Cody for VS Code. [Unreleased] changes a ### Added +### Fixed + +### Changed + +## 1.22.1 + +### Added + Enterprise: Expand the context window for Gemini 1.5 models. [pull/4563](https://github.com/sourcegraph/cody/pull/4563) ### Fixed diff --git a/vscode/package.json b/vscode/package.json index 4a3ffb019f69..d2d785fb027c 100644 --- a/vscode/package.json +++ b/vscode/package.json @@ -3,7 +3,7 @@ "name": "cody-ai", "private": true, "displayName": "Cody: AI Coding Assistant with Autocomplete & Chat", - "version": "1.22.0", + "version": "1.22.1", "publisher": "sourcegraph", "license": "Apache-2.0", "icon": "resources/cody.png", @@ -47,6 +47,7 @@ "test:unit:tree-sitter-queries": "vitest ./src/tree-sitter/query-tests/*.test.ts", "github-changelog": "ts-node-transpile-only ./scripts/github-changelog.ts", "version-bump:minor": "RELEASE_TYPE=minor ts-node-transpile-only ./scripts/version-bump.ts", + "version-bump:patch": "RELEASE_TYPE=patch ts-node-transpile-only ./scripts/version-bump.ts", "version-bump:dry-run": "RELEASE_TYPE=prerelease ts-node-transpile-only ./scripts/version-bump.ts" }, "categories": ["Programming Languages", "Machine Learning", "Snippets", "Education"], diff --git a/vscode/scripts/version-bump.ts b/vscode/scripts/version-bump.ts index a3a631b6468f..710a1e7720f1 100644 --- a/vscode/scripts/version-bump.ts +++ b/vscode/scripts/version-bump.ts @@ -38,7 +38,7 @@ if (!nextVersion || !semver.valid(nextVersion)) { process.exit(1) } -execSync(`git checkout -b release-${releaseType}-v${version}`, { stdio: 'inherit' }) +execSync(`git checkout -b release-${releaseType}-v${nextVersion}`, { stdio: 'inherit' }) process.stdout.write(`Updating files to the next version: ${nextVersion}\n`)