Skip to content

Commit 5b2749b

Browse files
Update version and changelog for 6.2 release
1 parent b6ff932 commit 5b2749b

File tree

5 files changed

+27
-7
lines changed

5 files changed

+27
-7
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,26 @@
11
# Change Log
22
All notable changes to the code converter will be documented here.
33

4+
# 6.2.0 19/11/2018
5+
6+
### VB -> C#
7+
8+
* Fix array indexing from outside a class
9+
* Escape double quotes with string interpolation
10+
* Converts date literals
11+
* Converts ChrW and Chr
12+
* Converts type promoted module members
13+
* Converts EntryPoint and Charset for native functions
14+
* Converts WriteOnly interface properties
15+
* Converts "Integer?" to int?
16+
* Converts property setters with parameters not named "value"
17+
* Fixed bug causing duplicate namespace qualification
18+
* Parenthesizes ternary conditional when necessary to preserve logic
19+
20+
### C# -> VB
21+
22+
* Convert enums with explicit base type
23+
424
# 6.1.0 - 12/10/2018
525

626
### VB -> C#

ICSharpCode.CodeConverter/ICSharpCode.CodeConverter.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
* Completely free and open source: Check out [GitHub](https://github.com/icsharpcode/CodeConverter#code-converter-).</Description>
1313
<Product>Code Converter for C# to/from VB.NET</Product>
1414
<Copyright>Copyright (c) 2014-2018 AlphaSierraPapa</Copyright>
15-
<AssemblyVersion>6.1.0.0</AssemblyVersion>
16-
<FileVersion>6.1.0.0</FileVersion>
17-
<Version>6.1.0</Version>
15+
<AssemblyVersion>6.2.0.0</AssemblyVersion>
16+
<FileVersion>6.2.0.0</FileVersion>
17+
<Version>6.2.0</Version>
1818
<PackageId>ICSharpCode.CodeConverter</PackageId>
1919
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2020
<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="6.1.0.0" Language="en-US" Publisher="IC#Code"/>
4+
<Identity Id="7e2a69d6-193b-4cdf-878d-3370d5931942" Version="6.2.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("6.1.0.0")]
35-
[assembly: AssemblyFileVersion("6.1.0.0")]
34+
[assembly: AssemblyVersion("6.2.0.0")]
35+
[assembly: AssemblyFileVersion("6.2.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: 6.1.{build}
2+
version: 6.2.{build}
33
configuration: Debug
44
image: Visual Studio 2017
55

0 commit comments

Comments
 (0)