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");