Skip to content

Commit

Permalink
VS Code: Release 1.1.0 (#2666)
Browse files Browse the repository at this point in the history
VS Code: Release 1.1.0 release update

## Test plan

<!-- Required. See
https://sourcegraph.com/docs/dev/background-information/testing_principles.
-->

version update
  • Loading branch information
abeatrix authored Jan 10, 2024
1 parent ac67893 commit f2b2d73
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 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.1.0]

### Added

- Edit: Added support for user-provided context. Use "@" to include files and "@#" to include specific symbols. [pull/2574](https://github.com/sourcegraph/cody/pull/2574)
- Autocomplete: Experimental support for inline completions with Code Llama via [Ollama](https://ollama.ai/) running locally. [pull/2635](https://github.com/sourcegraph/cody/pull/2635)

Expand Down
9 changes: 5 additions & 4 deletions vscode/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,11 @@ We also have some build-in UI to help during the development of autocomplete req
To publish a new release to the [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=sourcegraph.cody-ai) and [Open VSX Registry](https://open-vsx.org/extension/sourcegraph/cody-ai):

1. Increment the `version` in [`package.json`](package.json) & [`CHANGELOG`](CHANGELOG.md).
1. Commit the version increment.
1. `git tag vscode-v$(jq -r .version package.json)`
1. `git push --tags`
1. Wait for the [vscode-stable-release workflow](https://github.com/sourcegraph/cody/actions/workflows/vscode-stable-release.yml) run to finish.
2. Commit the version increment, e.g. `VS Code: Release 1.1.0`.
3. `git tag vscode-v$(jq -r .version package.json)`
4. `git push --tags`
5. Wait for the [vscode-stable-release workflow](https://github.com/sourcegraph/cody/actions/workflows/vscode-stable-release.yml) run to finish.
6. Update the [Release Notes](https://github.com/sourcegraph/cody/releases).

### Insiders builds

Expand Down
2 changes: 1 addition & 1 deletion vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "cody-ai",
"private": true,
"displayName": "Cody AI",
"version": "1.0.5",
"version": "1.1.0",
"publisher": "sourcegraph",
"license": "Apache-2.0",
"icon": "resources/cody.png",
Expand Down

0 comments on commit f2b2d73

Please sign in to comment.