Skip to content

Commit 62e734e

Browse files
committed
docs: Switches the extension to the version 0.5.0
1 parent 8af4754 commit 62e734e

File tree

6 files changed

+16
-3
lines changed

6 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
All notable changes to the "Sharpen" extension will be documented in this file.
33

44
The format of the file is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
5+
## [0.5.0] - 2018-05-25
6+
### Added
7+
- "Use nameof expression in dependency property declarations" suggestion.
8+
- "Use nameof expression for throwing argument exceptions" suggestion.
59

610
## [0.4.0] - 2018-05-12
711
### Added

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ Note that in the current version of *Sharpen* the following features mentioned i
4949
## Release Notes
5050
All notable changes to the *Sharpen* extension are documented in the [changelog](https://github.com/ironcev/sharpen/blob/master/CHANGELOG.md). Below is the excerpt from the changelog that lists only the summary of major changes.
5151

52+
### 0.5.0
53+
- Suggestions for using nameof expressions in argument exceptions and dependency properties (C# 6.0).
54+
5255
### 0.4.0
5356
- Suggestions for discarding of out variables (C# 7.0).
5457
- Suggestions for usages of out variables in object creations (C# 7.0).

src/AssemblyInfo.Common.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ internal static partial class AssemblyDescription
3333

3434
public const string Culture = "";
3535

36-
public const string Version = "0.4.0";
36+
public const string Version = "0.5.0";
3737

3838
public const string Configuration =
3939
#if DEBUG

src/Sharpen.VisualStudioExtension/ReleaseNotes.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to the "Sharpen" extension will be documented in this file.
44

55
The format of the file is based on "Keep a Changelog" (http://keepachangelog.com/en/1.0.0/).
66

7+
[0.5.0] - 2018-05-25
8+
====================
9+
Added
10+
- "Use nameof expression in dependency property declarations" suggestion.
11+
- "Use nameof expression for throwing argument exceptions" suggestion.
12+
713
[0.4.0] - 2018-05-12
814
====================
915
Added

src/Sharpen.VisualStudioExtension/SharpenPackage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
namespace Sharpen.VisualStudioExtension
99
{
1010
[PackageRegistration(UseManagedResourcesOnly = true)]
11-
[InstalledProductRegistration("#110", "#112", "0.4.0", IconResourceID = 400)]
11+
[InstalledProductRegistration("#110", "#112", "0.5.0", IconResourceID = 400)]
1212
[ProvideMenuResource("Menus.ctmenu", 1)]
1313
[Guid(PackageGuidString)]
1414
[SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1650:ElementDocumentationMustBeSpelledCorrectly", Justification = "pkgdef, VS and vsixmanifest are valid VS terms.")]

src/Sharpen.VisualStudioExtension/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="Ironcev.Sharpen" Version="0.4.0" Language="en-US" Publisher="Igor Rončević" />
4+
<Identity Id="Ironcev.Sharpen" Version="0.5.0" Language="en-US" Publisher="Igor Rončević" />
55
<DisplayName>Sharpen</DisplayName>
66
<Description xml:space="preserve">A Visual Studio extension that intelligently introduces new C# language features into your existing code base.</Description>
77
<MoreInfo>http://sharpen.rocks</MoreInfo>

0 commit comments

Comments
 (0)