Skip to content

Commit fa78c5a

Browse files
committed
docs: Moves the extension to the version 0.8.0
1 parent 0eafd71 commit fa78c5a

File tree

6 files changed

+19
-6
lines changed

6 files changed

+19
-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.8.0] - 2019-02-16
77
### Added
88
- Support for VS 2019.
99
- Loading Sharpen extension asynchronously.

README.md

Lines changed: 4 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.7.0-blue.svg)](https://marketplace.visualstudio.com/items?itemName=ironcev.sharpen)
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)
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,9 @@ 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.8.0
74+
- Support for Visual Studio 2019.
75+
7376
### 0.7.0
7477
- Analysis of selected files, folders, and projects via "Analyze with Sharpen" option on context menus.
7578

src/AssemblyInfo.Common.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ internal static partial class AssemblyDescription
2828
{
2929
public const string Company = "Igor Rončević";
3030
public const string Trademark = "";
31-
public const string Copyright = "Copyright © 2017 - 2018 " + Company;
31+
public const string Copyright = "Copyright © 2017 - 2019 " + Company;
3232
public const string Product = "Sharpen";
3333

3434
public const string Culture = "";
3535

36-
public const string Version = "0.7.0";
36+
public const string Version = "0.8.0";
3737

3838
public const string Configuration =
3939
#if DEBUG

src/Sharpen.VisualStudioExtension/ReleaseNotes.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ 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.8.0] - 2019-02-16
8+
====================
9+
Added
10+
- Support for VS 2019.
11+
- Loading Sharpen extension asynchronously.
12+
13+
Fixed
14+
- Sharpen does not support VS 2019 but is listed on VS Marketplace under that version (#19).
15+
- Dependency alert: Visual Studio MPF 15.0 - already installed MPF 16.0 (#21).
16+
717
[0.7.0] - 2018-11-18
818
====================
919
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.7.0", IconResourceID = 400)]
15+
[InstalledProductRegistration("#110", "#112", "0.8.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.7.0" Language="en-US" Publisher="Igor Rončević" />
4+
<Identity Id="Ironcev.Sharpen" Version="0.8.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)