Skip to content

Commit 87776f9

Browse files
Update to v10.3 label.
1 parent cd698c2 commit 87776f9

File tree

7 files changed

+17
-5
lines changed

7 files changed

+17
-5
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## vNext (10.2)
3+
## vNext (10.4)
44

55
These changes have not been released to the Visual Studio marketplace, but (if checked) are available in preview within the [CI build](http://vsixgallery.com/extension/4c82e17d-927e-42d2-8460-b473ac7df316/).
66

@@ -12,6 +12,18 @@ These changes have not been released to the Visual Studio marketplace, but (if c
1212

1313
These are the changes to each version that has been released to the Visual Studio marketplace.
1414

15+
## 10.3
16+
17+
**2017-03-26**
18+
19+
- [x] Features
20+
- [x] [#359](https://github.com/codecadwallader/codemaid/pull/359) - Reorganizing: Add option to sort private->public vs. public->private - thanks [ahalassy](https://github.com/ahalassy)!
21+
- [x] [#394](https://github.com/codecadwallader/codemaid/pull/394) - Finding: Add ability to clear solution explorer search before finding - thanks [joeburdick](https://github.com/joeburdick)!
22+
- [x] [#420](https://github.com/codecadwallader/codemaid/issues/420) - Upgraded projects to .NET 4.6.1 and misc. fixes for VS2017 build support
23+
24+
- [x] Fixes
25+
- [x] [#419](https://github.com/codecadwallader/codemaid/issues/419) - Cleaning: Switched using statement cleanup command to workaround VS2017+ReSharper issue that prevented using statement cleanup from activating - thanks [jlbeard84](https://github.com/jlbeard84)!
26+
1527
## 10.2
1628

1729
**2017-01-01**

CodeMaid/Integration/Images/about.png

27 Bytes
Loading

CodeMaid/Integration/Images/about.xcf

51 Bytes
Binary file not shown.

CodeMaid/source.extension.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ static class Vsix
66
public const string Name = "CodeMaid";
77
public const string Description = "CodeMaid is an open source Visual Studio extension to cleanup and simplify our C#, C++, F#, VB, PHP, PowerShell, R, JSON, XAML, XML, ASP, HTML, CSS, LESS, SCSS, JavaScript and TypeScript coding.";
88
public const string Language = "en-US";
9-
public const string Version = "10.2";
9+
public const string Version = "10.3";
1010
public const string Author = "Steve Cadwallader";
1111
public const string Tags = "build, code, c#, beautify, cleanup, cleaning, digging, reorganizing, formatting";
1212
}

CodeMaid/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 Publisher="Steve Cadwallader" Version="10.2" Id="4c82e17d-927e-42d2-8460-b473ac7df316" Language="en-US" />
4+
<Identity Publisher="Steve Cadwallader" Version="10.3" Id="4c82e17d-927e-42d2-8460-b473ac7df316" Language="en-US" />
55
<DisplayName>CodeMaid</DisplayName>
66
<Description xml:space="preserve">CodeMaid is an open source Visual Studio extension to cleanup and simplify our C#, C++, F#, VB, PHP, PowerShell, R, JSON, XAML, XML, ASP, HTML, CSS, LESS, SCSS, JavaScript and TypeScript coding.</Description>
77
<MoreInfo>http://www.codemaid.net/</MoreInfo>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<link href="http://www.codemaid.net/wp-content/uploads/external/ProjectDescription.css" rel="stylesheet"></link>
22

3-
<div id="mainFeatures"><a title="codemaid.net" href="http://www.codemaid.net" target="_blank"><img src="http://www.codemaid.net/wp-content/uploads/2017/01/about.png" alt="codemaid.net" /></a></div>
3+
<div id="mainFeatures"><a title="codemaid.net" href="http://www.codemaid.net" target="_blank"><img src="http://www.codemaid.net/wp-content/uploads/2017/03/about.png" alt="codemaid.net" /></a></div>
44
<div>For more details, please visit: <a title="codemaid.net" href="http://www.codemaid.net" target="_blank"> http://www.codemaid.net</a></div>
55
<p>Currently supports VS2012, VS2013, VS2015 and VS2017.</p>
66
<p>For Visual Studio 2010, the last supported version is <a href="https://github.com/codecadwallader/codemaid/releases/download/v0.8.1/CodeMaid_v0.8.1.vsix" target="_blank"> v0.8.1</a>.</p>

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 10.2.{build}
1+
version: 10.3.{build}
22
image: Visual Studio 2017 RC
33

44
install:

0 commit comments

Comments
 (0)