Skip to content

Commit

Permalink
v2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mrlacey committed Feb 15, 2024
1 parent 5587c65 commit b2ccbb7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/source.extension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "";
}
Expand Down
2 changes: 1 addition & 1 deletion src/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="CollapseComments.a1dfaad6-6e8d-420a-807b-ebbbc0e7a6bf" Version="2.6" Language="en-US" Publisher="Matt Lacey" />
<Identity Id="CollapseComments.a1dfaad6-6e8d-420a-807b-ebbbc0e7a6bf" Version="2.7" Language="en-US" Publisher="Matt Lacey" />
<DisplayName>Collapse Comments</DisplayName>
<Description xml:space="preserve">Improve the way you work with comments in code by easily (&amp; automatically) expanding and collapsing comments.</Description>
<MoreInfo>https://github.com/mrlacey/CollapseComments</MoreInfo>
Expand Down

0 comments on commit b2ccbb7

Please sign in to comment.