Skip to content

Commit 2eba061

Browse files
Release notes and version bump
1 parent 1a31a2a commit 2eba061

File tree

5 files changed

+24
-8
lines changed

5 files changed

+24
-8
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
11
# Change Log
22
All notable changes to the code converter will be documented here.
33

4-
#5.7.0 - TBC
4+
#5.8.0 - TBC
5+
* Move options lower down in the context menus so they aren't in the way
6+
7+
### VB -> C#
8+
* Handle WithEvents fields without initializers
9+
* In lambda, use parentheses around single explicitly typed parameter
10+
* Convert LocalDeclarationStatementSyntax
11+
* Default parameter "value" now has the correct case
12+
* Multiline xml doc comment conversion bugfix
13+
14+
### C# -> VB
15+
* Interfaces "implements" clause now converted
16+
* Shared no longer appears on Module members
17+
* Fixed .Name bug with anonymous object creation
18+
* Use Is and IsNot for reference type comparison
19+
20+
#5.7.0 - 08/05/2018
521
* Update to .NET Standard 2.0
622
* Convert solution and project files
723
* Added convert and copy to clipboard into options

ICSharpCode.CodeConverter/ICSharpCode.CodeConverter.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
* Completely free and open source: Check out [GitHub](https://github.com/icsharpcode/CodeConverter#code-converter-).</Description>
1212
<Product>Code Converter for C# to/from VB.NET</Product>
1313
<Copyright>Copyright (c) 2014-2018 AlphaSierraPapa</Copyright>
14-
<AssemblyVersion>5.7.0.0</AssemblyVersion>
15-
<FileVersion>5.7.0.0</FileVersion>
16-
<Version>5.7.0</Version>
14+
<AssemblyVersion>5.8.0.0</AssemblyVersion>
15+
<FileVersion>5.8.0.0</FileVersion>
16+
<Version>5.8.0</Version>
1717
<PackageId>ICSharpCode.CodeConverter</PackageId>
1818
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1919
<PackageLicenseUrl>https://github.com/icsharpcode/CodeConverter/blob/master/LICENSE</PackageLicenseUrl>

Vsix/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="7e2a69d6-193b-4cdf-878d-3370d5931942" Version="5.7.0.0" Language="en-US" Publisher="IC#Code"/>
4+
<Identity Id="7e2a69d6-193b-4cdf-878d-3370d5931942" Version="5.8.0.0" Language="en-US" Publisher="IC#Code"/>
55
<DisplayName>Code Converter C# to/from VB.NET</DisplayName>
66
<Description xml:space="preserve">Based on Roslyn, this converter allows you to convert C# code to VB.NET and vice versa</Description>
77
<License>license.txt</License>

Web/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
//
3232
// You can specify all the values or you can default the Revision and Build Numbers
3333
// by using the '*' as shown below:
34-
[assembly: AssemblyVersion("5.7.0.0")]
35-
[assembly: AssemblyFileVersion("5.7.0.0")]
34+
[assembly: AssemblyVersion("5.8.0.0")]
35+
[assembly: AssemblyFileVersion("5.8.0.0")]

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
platform: Any CPU
2-
version: 5.7.{build}
2+
version: 5.8.{build}
33
configuration: Debug
44
image: Visual Studio 2017
55

0 commit comments

Comments
 (0)