Skip to content

Commit da9a117

Browse files
committed
docs: Switches the extension to the version 0.6.1
1 parent 0220013 commit da9a117

File tree

6 files changed

+16
-5
lines changed

6 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ 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/).
55

6-
## [Unreleased]
6+
## [0.6.1] - 2018-10-07
77
### Added
8+
- Better display of Async and Await findings in the Sharpen Results view.
89
- "Await task instead of calling Task.Result" suggestion.
910

1011
## [0.6.0] - 2018-10-03

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*Sharpen* is a Visual Studio extension that intelligently introduces new C# language features into your existing code base. It makes your code smaller, simpler, faster, more expressive and more readable, in one word - sharper.
33

44
[![Twitter](https://img.shields.io/badge/twitter-sharpenrocks-brightgreen.svg?logo=twitter)](https://twitter.com/sharpenrocks)
5-
[![Visual Studio Marketplace](https://img.shields.io/badge/visual%20studio%20marketplace-v0.6.0-blue.svg)](https://marketplace.visualstudio.com/items?itemName=ironcev.sharpen)
5+
[![Visual Studio Marketplace](https://img.shields.io/badge/visual%20studio%20marketplace-v0.6.1-blue.svg)](https://marketplace.visualstudio.com/items?itemName=ironcev.sharpen)
66
[![AppVeyor](https://img.shields.io/appveyor/ci/ironcev/sharpen.svg)](https://ci.appveyor.com/project/ironcev/sharpen)
77
[![GitHub release](https://img.shields.io/github/release/ironcev/sharpen/all.svg)](https://github.com/ironcev/sharpen/releases)
88
[![License](https://img.shields.io/github/license/ironcev/sharpen.svg)](https://github.com/ironcev/sharpen/blob/master/LICENSE)
@@ -49,6 +49,10 @@ 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.6.1
53+
- Better display of Async and Await findings in the Sharpen Results view.
54+
- Suggestion for awaiting task instead of calling Task.Result.
55+
5256
### 0.6.0
5357
- Async/Await suggestions (C# 5.0).
5458

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.6.0";
36+
public const string Version = "0.6.1";
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.6.1] - 2018-10-07
8+
====================
9+
Added
10+
- Better display of Async and Await findings in the Sharpen Results view.
11+
- "Await task instead of calling Task.Result" suggestion.
12+
713
[0.6.0] - 2018-10-03
814
====================
915
Added

src/Sharpen.VisualStudioExtension/SharpenPackage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
namespace Sharpen.VisualStudioExtension
88
{
99
[PackageRegistration(UseManagedResourcesOnly = true)]
10-
[InstalledProductRegistration("#110", "#112", "0.6.0", IconResourceID = 400)]
10+
[InstalledProductRegistration("#110", "#112", "0.6.1", IconResourceID = 400)]
1111
[ProvideMenuResource("Menus.ctmenu", 1)]
1212
[Guid(PackageGuidString)]
1313
[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.6.0" Language="en-US" Publisher="Igor Rončević" />
4+
<Identity Id="Ironcev.Sharpen" Version="0.6.1" 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>https://sharpen.rocks</MoreInfo>

0 commit comments

Comments
 (0)