From 61f6ca78c81cae25f3f2072423232f6b5a62c0d2 Mon Sep 17 00:00:00 2001 From: Beatrix <68532117+abeatrix@users.noreply.github.com> Date: Fri, 1 Nov 2024 18:06:51 +0100 Subject: [PATCH] Release 0.1.1 (#137) - Update the extension version to 0.1.1 in the `source.extension.vsixmanifest` file - Update the cody stable release tag to `vscode-v1.38.3` in the `build.cake` file - Add a changelog entry for the 0.1.1 release, noting the fix for the login issue --- CHANGELOG.md | 6 ++++++ src/Cody.VisualStudio/source.extension.vsixmanifest | 2 +- src/build.cake | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 12fc8d81..a83bf75b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), ## Security +## [0.1.1] + +### Fixed + +- Login issue. + ## [0.1.0] ### Added diff --git a/src/Cody.VisualStudio/source.extension.vsixmanifest b/src/Cody.VisualStudio/source.extension.vsixmanifest index 986581ac..7feb560c 100644 --- a/src/Cody.VisualStudio/source.extension.vsixmanifest +++ b/src/Cody.VisualStudio/source.extension.vsixmanifest @@ -1,7 +1,7 @@ - + Cody for Visual Studio - AI Coding Assistant AI coding assistant that uses search and codebase context to help you write code faster! https://sourcegraph.com/cody diff --git a/src/build.cake b/src/build.cake index d05f9a77..ec4524b8 100644 --- a/src/build.cake +++ b/src/build.cake @@ -46,7 +46,7 @@ var nodeBinaryUrl = "https://github.com/sourcegraph/node-binaries/raw/main/v20.1 var nodeArmBinaryUrl = "https://github.com/sourcegraph/node-binaries/raw/main/v20.12.2/node-win-arm64.exe"; // The latest tag of the stable release from the cody repository https://github.com/sourcegraph/cody/tags -var codyStableReleaseTag = "vscode-v1.40.0"; +var codyStableReleaseTag = "vscode-v1.38.3"; var codyBranch = Argument("cody-branch", codyStableReleaseTag); var marketplaceToken = EnvironmentVariable("CODY_VS_MARKETPLACE_RELEASE_TOKEN");