Skip to content

Commit

Permalink
docs: Switches the extension to the version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ironcev committed Oct 5, 2018
1 parent 5c58969 commit fbfd727
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ All notable changes to the "Sharpen" extension will be documented in this file.

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

## [Unreleased]
## [0.6.0] - 2018-10-03
### Added
- "Await Task.Delay() instead of calling Thread.Sleep()" suggestion.
- "Await Task.WhenAll() instead of calling Task.WaitAll()" suggestion.
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ Note that in the current version of *Sharpen* the following features mentioned i
## Release Notes
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.

### 0.6.0
- Async/Await suggestions (C# 5.0).

### 0.5.0
- Suggestions for using nameof expressions in argument exceptions and dependency properties (C# 6.0).

Expand Down
2 changes: 1 addition & 1 deletion src/AssemblyInfo.Common.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ internal static partial class AssemblyDescription

public const string Culture = "";

public const string Version = "0.5.0";
public const string Version = "0.6.0";

public const string Configuration =
#if DEBUG
Expand Down
13 changes: 13 additions & 0 deletions src/Sharpen.VisualStudioExtension/ReleaseNotes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ All notable changes to the "Sharpen" extension will be documented in this file.

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

[0.6.0] - 2018-10-03
====================
Added
- "Await Task.Delay() instead of calling Thread.Sleep()" suggestion.
- "Await Task.WhenAll() instead of calling Task.WaitAll()" suggestion.
- "Await Task.WhenAny() instead of calling Task.WaitAny()" suggestion.
- "Await task instead of calling Task.Wait()" suggestion.
- "Await equivalent asynchronous method" suggestion.
- "Consider awaiting equivalent asynchronous method" suggestion.

Fixed
- Consecutive analysis runs fully block Visual Studio (#15).

[0.5.0] - 2018-05-25
====================
Added
Expand Down
2 changes: 1 addition & 1 deletion src/Sharpen.VisualStudioExtension/SharpenPackage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
namespace Sharpen.VisualStudioExtension
{
[PackageRegistration(UseManagedResourcesOnly = true)]
[InstalledProductRegistration("#110", "#112", "0.5.0", IconResourceID = 400)]
[InstalledProductRegistration("#110", "#112", "0.6.0", IconResourceID = 400)]
[ProvideMenuResource("Menus.ctmenu", 1)]
[Guid(PackageGuidString)]
[SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1650:ElementDocumentationMustBeSpelledCorrectly", Justification = "pkgdef, VS and vsixmanifest are valid VS terms.")]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?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="Ironcev.Sharpen" Version="0.5.0" Language="en-US" Publisher="Igor Rončević" />
<Identity Id="Ironcev.Sharpen" Version="0.6.0" Language="en-US" Publisher="Igor Rončević" />
<DisplayName>Sharpen</DisplayName>
<Description xml:space="preserve">A Visual Studio extension that intelligently introduces new C# language features into your existing code base.</Description>
<MoreInfo>http://sharpen.rocks</MoreInfo>
<MoreInfo>https://sharpen.rocks</MoreInfo>
<License>LICENSE.txt</License>
<ReleaseNotes>ReleaseNotes.html</ReleaseNotes>
<Icon>Resources\Icon.png</Icon>
Expand All @@ -30,4 +30,4 @@
<Prerequisite Id="Microsoft.VisualStudio.Component.Roslyn.LanguageServices" Version="[15.0.26208.0,16.0)" DisplayName="C# and Visual Basic" />
<Prerequisite Id="Microsoft.VisualStudio.Component.Roslyn.Compiler" Version="[15.0.26208.0,16.0)" DisplayName="C# and Visual Basic Roslyn compilers" />
</Prerequisites>
</PackageManifest>
</PackageManifest>

0 comments on commit fbfd727

Please sign in to comment.