Skip to content

Commit

Permalink
version 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
micjahn committed Aug 20, 2024
1 parent 4108c5e commit 43f970a
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,18 @@ Please report any issues to <https://github.com/micjahn/SSMS-Database-Folders/is

## Change Log

### v1.0.3 (2024-08-20)
* added support for SSMS 20

### v1.0.2 (2023-12-19)
* added support for SSMS 19
* added button to the SSMS toolbar for temporary activation/deactivation of the addin
* added option for showing debug output

### v1.0.1 (2020-09-05)
* added option for regulare expressions
* sort folders


### v1.0 (2020-xx-xx)
* first release.
4 changes: 2 additions & 2 deletions Sources/Include/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.2.0")]
[assembly: AssemblyFileVersion("1.0.2.0")]
[assembly: AssemblyVersion("1.0.3.0")]
[assembly: AssemblyFileVersion("1.0.3.0")]
6 changes: 3 additions & 3 deletions Sources/VSPackage/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<?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="SsmsDatabaseFolders.Michael Jahn.CEB7602F-8130-4A69-BCA3-8DA1C17B4B7D" Version="1.0.2" Language="en-US" Publisher="Michael Jahn" />
<Identity Id="SsmsDatabaseFolders.Michael Jahn.CEB7602F-8130-4A69-BCA3-8DA1C17B4B7D" Version="1.0.3" Language="en-US" Publisher="Michael Jahn" />
<DisplayName>SsmsDatabaseFolders</DisplayName>
<Description xml:space="preserve">SSMS Database Group Folders</Description>
<License>LICENSE.rtf</License>
<Icon>Resources\SsmsDatabaseFoldersPackage.ico</Icon>
</Metadata>
<Installation AllUsers="true">
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[14.0,20.0]">
<ProductArchitecture>x86</ProductArchitecture>
<ProductArchitecture>x86</ProductArchitecture>
</InstallationTarget>
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[14.0,20.0]">
<ProductArchitecture>amd64</ProductArchitecture>
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>
</Installation>
<Dependencies>
Expand Down
2 changes: 1 addition & 1 deletion build_deployment.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

SETLOCAL EnableDelayedExpansion EnableExtensions

SET VERSION=1.0.2
SET VERSION=1.0.3

SET CURRENT_DIR=%CD%
SET BUILD_DIR=%CD%\Build
Expand Down

0 comments on commit 43f970a

Please sign in to comment.