Skip to content

Commit

Permalink
docs: Moves the extension to the version 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ironcev committed Jun 14, 2019
1 parent 9f13b0b commit ecc1904
Show file tree
Hide file tree
Showing 7 changed files with 26 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.9.0] - 2019-06-14
### Added
- "Consider replacing using statement with using declaration" suggestion.
- "Replace using statement with using declaration" suggestion.
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*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.

[![Twitter](https://img.shields.io/badge/twitter-sharpenrocks-brightgreen.svg?logo=twitter)](https://twitter.com/sharpenrocks)
[![Visual Studio Marketplace](https://img.shields.io/badge/visual%20studio%20marketplace-v0.8.0-blue.svg)](https://marketplace.visualstudio.com/items?itemName=ironcev.sharpen)
[![Visual Studio Marketplace](https://img.shields.io/badge/visual%20studio%20marketplace-v0.9.0-blue.svg)](https://marketplace.visualstudio.com/items?itemName=ironcev.sharpen)
[![AppVeyor](https://img.shields.io/appveyor/ci/ironcev/sharpen.svg)](https://ci.appveyor.com/project/ironcev/sharpen)
[![GitHub release](https://img.shields.io/github/release/ironcev/sharpen/all.svg)](https://github.com/ironcev/sharpen/releases)
[![License](https://img.shields.io/github/license/ironcev/sharpen.svg)](https://github.com/ironcev/sharpen/blob/master/LICENSE)
Expand Down Expand Up @@ -70,6 +70,10 @@ 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.9.0
- Async streams, nullable reference types, switch expressions, and using declarations suggestions (C# 8.0).
- Var keyword suggestions (C# 3.0).

### 0.8.0
- Support for Visual Studio 2019.

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

public const string Configuration =
#if DEBUG
Expand Down
2 changes: 1 addition & 1 deletion src/Sharpen.VisualStudioExtension/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 Igor Rončević
Copyright (c) 2019 Igor Rončević

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
16 changes: 16 additions & 0 deletions src/Sharpen.VisualStudioExtension/ReleaseNotes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@ 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.9.0] - 2019-06-14
====================
Added
- "Consider replacing using statement with using declaration" suggestion.
- "Replace using statement with using declaration" suggestion.
- "Consider replacing switch statement containing only returns with switch expression" suggestion.
- "Consider replacing switch statement containing only assignments with switch expression" suggestion.
- "Replace switch statement containing only returns with switch expression" suggestion.
- "Replace switch statement containing only assignments with switch expression" suggestion.
- "Enable nullable context and declare local variable as nullable" suggestion.
- "Enable nullable context and declare property as nullable" suggestion.
- "Enable nullable context and declare field as nullable" suggestion.
- "Consider awaiting equivalent asynchronous method and yielding IAsyncEnumerable" suggestion.
- "Await [...] instead of calling [...]" suggestions support local functions.
- "Use var keyword in variable declaration with object creation" suggestion.

[0.8.0] - 2019-02-16
====================
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 @@ -12,7 +12,7 @@ namespace Sharpen.VisualStudioExtension
{
[ProvideAutoLoad(UIContextGuids80.SolutionExists, PackageAutoLoadFlags.BackgroundLoad)]
[PackageRegistration(UseManagedResourcesOnly = true, AllowsBackgroundLoading = true)]
[InstalledProductRegistration("#110", "#112", "0.8.0", IconResourceID = 400)]
[InstalledProductRegistration("#110", "#112", "0.9.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,7 +1,7 @@
<?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.8.0" Language="en-US" Publisher="Igor Rončević" />
<Identity Id="Ironcev.Sharpen" Version="0.9.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>https://sharpen.rocks</MoreInfo>
Expand Down

0 comments on commit ecc1904

Please sign in to comment.