Skip to content

Commit

Permalink
VS Code: Release v1.22.1 (#4572)
Browse files Browse the repository at this point in the history
  • Loading branch information
abeatrix authored Jun 14, 2024
1 parent f6ca0c7 commit 868a8e0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
8 changes: 8 additions & 0 deletions vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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"],
Expand Down
2 changes: 1 addition & 1 deletion vscode/scripts/version-bump.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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`)

Expand Down

0 comments on commit 868a8e0

Please sign in to comment.