Skip to content
This repository has been archived by the owner. It is now read-only.

Commit 561b997

Browse files
Update version to 4.8
1 parent 8012afc commit 561b997

File tree

9 files changed

+21
-21
lines changed

9 files changed

+21
-21
lines changed

BuildTools/appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
only:
55
- release
66

7-
version: 4.6.{build}
7+
version: 4.8.{build}
88

99
os: Visual Studio 2015
1010

@@ -34,7 +34,7 @@
3434
only:
3535
- master
3636

37-
version: 4.6.{build}
37+
version: 4.8.{build}
3838

3939
os: Visual Studio 2015
4040

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
nuget_version=5.0.0
22
full_version=5.0.0.0
3-
release_notes_link=https://github.com/icsharpcode/RefactoringEssentials/wiki/Release-4.6
4-
copyright=Copyright (c) 2014-2016 AlphaSierraPapa
3+
release_notes_link=https://github.com/icsharpcode/RefactoringEssentials/wiki/Release-4.8
4+
copyright=Copyright (c) 2014-2017 AlphaSierraPapa

RefactoringEssentials/CodeRefactorings.CSharp.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
1616
-->
1717
<h2>Supported Refactorings</h2>
18-
<p>105 code refactorings for C#</p>
18+
<p>106 code refactorings for C#</p>
1919
<ul>
2020
<li>Adds another accessor (AddAnotherAccessorCodeRefactoringProvider)</li>
2121
<li>Add braces (AddBracesCodeRefactoringProvider)</li>
@@ -26,6 +26,7 @@ <h2>Supported Refactorings</h2>
2626
<li>Add null check (AddNullCheckCodeRefactoringProvider)</li>
2727
<li>Add one or more optional parameters to an invocation, using their default values (AddOptionalParameterToInvocationCodeRefactoringProvider)</li>
2828
<li>Convert loop to Linq expression (AutoLinqSumAction)</li>
29+
<li>Change access level (ChangeAccessModifierAction)</li>
2930
<li>Check array index value (CheckArrayIndexValueCodeRefactoringProvider)</li>
3031
<li>Check collection index value (CheckCollectionIndexValueCodeRefactoringProvider)</li>
3132
<li>Check dictionary key value (CheckDictionaryKeyValueCodeRefactoringProvider)</li>

RefactoringEssentials/Properties/AssemblyInfoBase.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
[assembly: AssemblyCompany("ICSharpCode")]
1010
[assembly: AssemblyProduct("Refactoring Essentials")]
1111
[assembly: AssemblyCopyright("Copyright 2010-2016 AlphaSierraPapa and Xamarin Inc.")]
12-
[assembly: AssemblyVersion("4.6.0.0")]
13-
[assembly: AssemblyFileVersion("4.6.0")]
12+
[assembly: AssemblyVersion("4.8.0.0")]
13+
[assembly: AssemblyFileVersion("4.8.0")]
1414

1515
// This sets the default COM visibility of types in the assembly to invisible.
1616
// If you need to expose a type to COM, use [ComVisible(true)] on that type.

RefactoringEssentials/RefactoringEssentials.Library.nuspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<package>
44
<metadata>
55
<id>RefactoringEssentials.Library</id>
6-
<version>4.6.0</version>
6+
<version>4.8.0</version>
77
<title>Refactoring Essentials</title>
88
<authors>IC#Code</authors>
99
<owners>IC#Code</owners>
@@ -12,8 +12,8 @@
1212
<iconUrl>https://raw.githubusercontent.com/icsharpcode/RefactoringEssentials/master/RefactoringEssentials/Images/refactoringessentials-logo32.png</iconUrl>
1313
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1414
<description>Analyzers and Code Fixes as a library, intended for IDE builders</description>
15-
<releaseNotes>Please see https://github.com/icsharpcode/RefactoringEssentials/wiki/Release-4.6 for more information.</releaseNotes>
16-
<copyright>Copyright (c) 2014-2016 AlphaSierraPapa</copyright>
15+
<releaseNotes>Please see https://github.com/icsharpcode/RefactoringEssentials/wiki/Release-4.8 for more information.</releaseNotes>
16+
<copyright>Copyright (c) 2014-2017 AlphaSierraPapa</copyright>
1717
<tags>VS 2015 Roslyn Analyzer Refactoring</tags>
1818
<dependencies>
1919
<dependency id="Microsoft.CodeAnalysis.Analyzers" version="1.1.0" />

RefactoringEssentials/RefactoringEssentials.nuspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<package>
44
<metadata minClientVersion="2.8">
55
<id>RefactoringEssentials</id>
6-
<version>4.6.0</version>
6+
<version>4.8.0</version>
77
<title>Refactoring Essentials</title>
88
<authors>IC#Code</authors>
99
<owners>IC#Code</owners>
@@ -13,9 +13,9 @@
1313
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1414
<description>Analyzers and Code Fixes for Visual Studio 2015 (Roslyn-based). Intended for build integration. If you need Visual Studio integration only, please check out the VSIX (Visual Studio extension) from our Web site.</description>
1515
<releaseNotes>
16-
Please see https://github.com/icsharpcode/RefactoringEssentials/wiki/Release-4.6 for more information.
16+
Please see https://github.com/icsharpcode/RefactoringEssentials/wiki/Release-4.8 for more information.
1717
</releaseNotes>
18-
<copyright>Copyright (c) 2014-2016 AlphaSierraPapa</copyright>
18+
<copyright>Copyright (c) 2014-2017 AlphaSierraPapa</copyright>
1919
<tags>VS 2015 Roslyn Analyzer Refactoring</tags>
2020
<developmentDependency>true</developmentDependency>
2121
</metadata>
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
nuget_version=4.6.0
2-
full_version=4.6.0.0
3-
release_notes_link=https://github.com/icsharpcode/RefactoringEssentials/wiki/Release-4.6
4-
copyright=Copyright (c) 2014-2016 AlphaSierraPapa
1+
nuget_version=4.8.0
2+
full_version=4.8.0.0
3+
release_notes_link=https://github.com/icsharpcode/RefactoringEssentials/wiki/Release-4.8
4+
copyright=Copyright (c) 2014-2017 AlphaSierraPapa

RefactoringEssentials/missing.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
**C#**
77

8-
* ChangeAccessModifierAction
98
* CreateIndexerAction
109
* IntroduceConstantAction
1110
* LinqFluentToQueryAction

Vsix/source.extension.vsixmanifest

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
<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">
44
<Metadata>
5-
<Identity Id="NR6Pack.Refactorings.Vsix..cd27e59b-5c56-4238-8931-c9bb745a7a7f" Version="4.6.0.0" Language="en-US" Publisher="IC#Code"/>
5+
<Identity Id="NR6Pack.Refactorings.Vsix..cd27e59b-5c56-4238-8931-c9bb745a7a7f" Version="4.8.0.0" Language="en-US" Publisher="IC#Code"/>
66
<DisplayName>Refactoring Essentials for Visual Studio</DisplayName>
77
<Description xml:space="preserve">Free refactorings for C# and Visual Basic (VB) - plus more!</Description>
88
<License>license.txt</License>
9-
<GettingStartedGuide>https://github.com/icsharpcode/RefactoringEssentials/wiki/Release-4.6</GettingStartedGuide>
10-
<ReleaseNotes>https://github.com/icsharpcode/RefactoringEssentials/wiki/Release-4.6</ReleaseNotes>
9+
<GettingStartedGuide>https://github.com/icsharpcode/RefactoringEssentials/wiki/Release-4.8</GettingStartedGuide>
10+
<ReleaseNotes>https://github.com/icsharpcode/RefactoringEssentials/wiki/Release-4.8</ReleaseNotes>
1111
<Icon>Images\refactoringessentials-logo90.png</Icon>
1212
<PreviewImage>Images\refactoringessentials-preview.png</PreviewImage>
1313
</Metadata>

0 commit comments

Comments
 (0)