Skip to content

Commit 28c51ff

Browse files
committed
Change version to 0.7.0
1 parent eb53980 commit 28c51ff

File tree

12 files changed

+20
-18
lines changed

12 files changed

+20
-18
lines changed

ChangeLog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Release Notes
22

3+
## 0.7.0 (2017-12-13)
4+
5+
* Rewrite C++ snippets
6+
* Change shortcut for '...WithInitializer' snippets from '_' to 'x' (C# and VB)
7+
* Remove '...WithArguments' snippets and '...WithParameters' snippets (C# and VB)
8+
39
## 0.6.0 (2017-09-24)
410

511
### New Shortcuts

source/Snippetica.VisualStudio.Dev/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
// You can specify all the values or you can default the Build and Revision Numbers
2929
// by using the '*' as shown below:
3030
// [assembly: AssemblyVersion("1.0.*")]
31-
[assembly: AssemblyVersion("0.5.1")]
31+
[assembly: AssemblyVersion("0.7.0")]
3232
//[assembly: AssemblyFileVersion("1.0.0.0")]

source/Snippetica.VisualStudio.Dev/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<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">
33
<Metadata>
4-
<Identity Id="ae12c77c-5384-4e1f-a148-26bf0fddaa33" Version="0.6.0" Language="en-US" Publisher="Josef Pihrt" />
4+
<Identity Id="ae12c77c-5384-4e1f-a148-26bf0fddaa33" Version="0.7.0" Language="en-US" Publisher="Josef Pihrt" />
55
<DisplayName>Snippetica.Dev</DisplayName>
66
<Description xml:space="preserve">A collection of snippets for C#, VB, C++, HTML, XAML and XML.</Description>
77
<MoreInfo>http://github.com/JosefPihrt/Snippetica</MoreInfo>

source/Snippetica.VisualStudio/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
// You can specify all the values or you can default the Build and Revision Numbers
2929
// by using the '*' as shown below:
3030
// [assembly: AssemblyVersion("1.0.*")]
31-
[assembly: AssemblyVersion("0.5.1")]
31+
[assembly: AssemblyVersion("0.7.0")]
3232
//[assembly: AssemblyFileVersion("1.0.0.0")]

source/Snippetica.VisualStudio/Snippetica.VisualStudio.csproj

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -91,16 +91,6 @@
9191
<ItemGroup>
9292
<Reference Include="System" />
9393
</ItemGroup>
94-
<ItemGroup>
95-
<Content Include="Snippetica.Cpp\AlignAsKeyword">
96-
<IncludeInVSIX>true</IncludeInVSIX>
97-
</Content>
98-
</ItemGroup>
99-
<ItemGroup>
100-
<Content Include="Snippetica.Cpp\AlignAsKeyword">
101-
<IncludeInVSIX>true</IncludeInVSIX>
102-
</Content>
103-
</ItemGroup>
10494
<ItemGroup>
10595
<Content Include="Snippetica.CSharp\AttributeClass.snippet">
10696
<IncludeInVSIX>true</IncludeInVSIX>

source/Snippetica.VisualStudio/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<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">
33
<Metadata>
4-
<Identity Id="5809355f-dd0b-4463-a439-46f547208e95" Version="0.6.0" Language="en-US" Publisher="Josef Pihrt" />
4+
<Identity Id="5809355f-dd0b-4463-a439-46f547208e95" Version="0.7.0" Language="en-US" Publisher="Josef Pihrt" />
55
<DisplayName>Snippetica</DisplayName>
66
<Description xml:space="preserve">A collection of snippets for C#, VB, C++, HTML, XAML and XML.</Description>
77
<MoreInfo>http://github.com/JosefPihrt/Snippetica</MoreInfo>

source/Snippetica.VisualStudioCode.Dev/Snippetica.CSharp.Dev/package/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"displayName": "Snippetica for C#",
55
"description": "A collection of snippets for C#.",
66
"icon": "images/icon.png",
7-
"version": "0.6.0",
7+
"version": "0.7.0",
88
"author": "Josef Pihrt",
99
"license": "SEE LICENSE IN LICENSE.TXT",
1010
"homepage": "http://github.com/josefpihrt/snippetica/blob/master/source/Snippetica.VisualStudioCode/Snippetica.CSharp.Dev/README.md",

source/Snippetica.VisualStudioCode.Dev/Snippetica.VisualBasic.Dev/package/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"displayName": "Snippetica for VB",
55
"description": "A collection of snippets for VB.",
66
"icon": "images/icon.png",
7-
"version": "0.6.0",
7+
"version": "0.7.0",
88
"author": "Josef Pihrt",
99
"license": "SEE LICENSE IN LICENSE.TXT",
1010
"homepage": "http://github.com/josefpihrt/snippetica/blob/master/source/Snippetica.VisualStudioCode/Snippetica.VisualBasic.Dev/README.md",
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
## 0.7.0 (2017-12-13)
2+
3+
* Change shortcut for '...WithInitializer' snippets from '_' to 'x'
4+
* Remove '...WithArguments' snippets and '...WithParameters' snippets

source/Snippetica.VisualStudioCode/Snippetica.CSharp/package/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"displayName": "Snippetica for C#",
55
"description": "A collection of snippets for C#.",
66
"icon": "images/icon.png",
7-
"version": "0.6.0",
7+
"version": "0.7.0",
88
"author": "Josef Pihrt",
99
"license": "SEE LICENSE IN LICENSE.TXT",
1010
"homepage": "http://github.com/josefpihrt/snippetica/blob/master/source/Snippetica.VisualStudioCode/Snippetica.CSharp/README.md",

0 commit comments

Comments
 (0)