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