From b2ccbb7b131d45c91d630b5a52281c9ed404d9ae Mon Sep 17 00:00:00 2001 From: Matt Lacey Date: Thu, 15 Feb 2024 09:54:13 +0000 Subject: [PATCH] v2.7 --- CHANGELOG.md | 4 ++++ src/source.extension.cs | 2 +- src/source.extension.vsixmanifest | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb7f0bc..80be638 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ download in the These are the changes to each version that has been released on the official Visual Studio extension gallery. +## 2.7 + +- [x] Fix bug that can cause VS to crash. + ## 2.6 - [x] Add option to not create undo/redo entries when collaping or expanding regions. diff --git a/src/source.extension.cs b/src/source.extension.cs index 21a9de2..0095641 100644 --- a/src/source.extension.cs +++ b/src/source.extension.cs @@ -11,7 +11,7 @@ internal sealed partial class Vsix public const string Name = "Collapse Comments"; public const string Description = @"Improve the way you work with comments in code by easily (& automatically) expanding and collapsing comments."; public const string Language = "en-US"; - public const string Version = "2.6"; + public const string Version = "2.7"; public const string Author = "Matt Lacey"; public const string Tags = ""; } diff --git a/src/source.extension.vsixmanifest b/src/source.extension.vsixmanifest index c756a46..a1657fe 100644 --- a/src/source.extension.vsixmanifest +++ b/src/source.extension.vsixmanifest @@ -1,7 +1,7 @@  - + Collapse Comments Improve the way you work with comments in code by easily (& automatically) expanding and collapsing comments. https://github.com/mrlacey/CollapseComments