Skip to content

Commit ecc1904

Browse files
committed
docs: Moves the extension to the version 0.9.0
1 parent 9f13b0b commit ecc1904

File tree

7 files changed

+26
-6
lines changed

7 files changed

+26
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ 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.9.0] - 2019-06-14
77
### Added
88
- "Consider replacing using statement with using declaration" suggestion.
99
- "Replace using statement with using declaration" suggestion.

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 shorter, simpler, more expressive, more performant, 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.8.0-blue.svg)](https://marketplace.visualstudio.com/items?itemName=ironcev.sharpen)
5+
[![Visual Studio Marketplace](https://img.shields.io/badge/visual%20studio%20marketplace-v0.9.0-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)
@@ -70,6 +70,10 @@ Note that in the current version of *Sharpen* the following features mentioned i
7070
## Release Notes
7171
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.
7272

73+
### 0.9.0
74+
- Async streams, nullable reference types, switch expressions, and using declarations suggestions (C# 8.0).
75+
- Var keyword suggestions (C# 3.0).
76+
7377
### 0.8.0
7478
- Support for Visual Studio 2019.
7579

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.8.0";
36+
public const string Version = "0.9.0";
3737

3838
public const string Configuration =
3939
#if DEBUG

src/Sharpen.VisualStudioExtension/LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 Igor Rončević
3+
Copyright (c) 2019 Igor Rončević
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

src/Sharpen.VisualStudioExtension/ReleaseNotes.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ 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.9.0] - 2019-06-14
8+
====================
9+
Added
10+
- "Consider replacing using statement with using declaration" suggestion.
11+
- "Replace using statement with using declaration" suggestion.
12+
- "Consider replacing switch statement containing only returns with switch expression" suggestion.
13+
- "Consider replacing switch statement containing only assignments with switch expression" suggestion.
14+
- "Replace switch statement containing only returns with switch expression" suggestion.
15+
- "Replace switch statement containing only assignments with switch expression" suggestion.
16+
- "Enable nullable context and declare local variable as nullable" suggestion.
17+
- "Enable nullable context and declare property as nullable" suggestion.
18+
- "Enable nullable context and declare field as nullable" suggestion.
19+
- "Consider awaiting equivalent asynchronous method and yielding IAsyncEnumerable" suggestion.
20+
- "Await [...] instead of calling [...]" suggestions support local functions.
21+
- "Use var keyword in variable declaration with object creation" suggestion.
22+
723
[0.8.0] - 2019-02-16
824
====================
925
Added

src/Sharpen.VisualStudioExtension/SharpenPackage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace Sharpen.VisualStudioExtension
1212
{
1313
[ProvideAutoLoad(UIContextGuids80.SolutionExists, PackageAutoLoadFlags.BackgroundLoad)]
1414
[PackageRegistration(UseManagedResourcesOnly = true, AllowsBackgroundLoading = true)]
15-
[InstalledProductRegistration("#110", "#112", "0.8.0", IconResourceID = 400)]
15+
[InstalledProductRegistration("#110", "#112", "0.9.0", IconResourceID = 400)]
1616
[ProvideMenuResource("Menus.ctmenu", 1)]
1717
[Guid(PackageGuidString)]
1818
[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.8.0" Language="en-US" Publisher="Igor Rončević" />
4+
<Identity Id="Ironcev.Sharpen" Version="0.9.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>https://sharpen.rocks</MoreInfo>

0 commit comments

Comments
 (0)