Skip to content

Commit 35dc08c

Browse files
Bump to version 8.0.0 and tidy release notes
1 parent 6e5b036 commit 35dc08c

6 files changed

Lines changed: 25 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
44

55
## [Unreleased]
66

7-
* Decrease horrendousness of performance for large projects containing large files
7+
8+
### Vsix
9+
10+
11+
### VB -> C#
12+
13+
14+
### C# -> VB
15+
16+
17+
## [8.0.0] - 2020-03-11
18+
19+
* Improve performance and feedback for large projects containing large files
820

921
### API
1022

@@ -19,12 +31,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
1931

2032
* Convert "Handles" in some previously missed cases [#530](https://github.com/icsharpcode/CodeConverter/pull/530)
2133
* Wrap event handlers in lambda where needed [#474](https://github.com/icsharpcode/CodeConverter/pull/474)
22-
* Streamline trailing else if
23-
* Use less error-prone, more performant null/default comparisons
34+
* Streamline trailing else if [810de96](https://github.com/icsharpcode/CodeConverter/commit/810de9677e8f8406c512e292297540e35d6c51d9)
35+
* Use less error-prone, more performant null/default comparisons [4de1978](https://github.com/icsharpcode/CodeConverter/commit/4de19782ef43d8404f6065516d1380a2e00eafdc)
2436
* Convert "{}" to "Array.Empty<T>()" [#495](https://github.com/icsharpcode/CodeConverter/issues/495)
2537
* Convert inferred anonymous member names without duplicating name [#480](https://github.com/icsharpcode/CodeConverter/issues/480)
2638
* Convert "!" operator to element access [#479](https://github.com/icsharpcode/CodeConverter/issues/479)
2739
* Fix async method default return statements [#478](https://github.com/icsharpcode/CodeConverter/issues/478)
40+
* Convert multi-dimensional array initializers correctly [#539](https://github.com/icsharpcode/CodeConverter/pull/539)
2841

2942
### C# -> VB
3043

CodeConverter/CodeConverter.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
* Completely free and open source: Check out [GitHub](https://github.com/icsharpcode/CodeConverter#code-converter-).</Description>
1111
<Product>Code Converter for C# to/from VB.NET</Product>
1212
<Copyright>Copyright (c) 2017-2020 AlphaSierraPapa for the CodeConverter team</Copyright>
13-
<AssemblyVersion>7.9.0.0</AssemblyVersion>
14-
<FileVersion>7.9.0.0</FileVersion>
15-
<Version>7.9.0</Version>
13+
<AssemblyVersion>8.0.0.0</AssemblyVersion>
14+
<FileVersion>8.0.0.0</FileVersion>
15+
<Version>8.0.0</Version>
1616
<PackageId>ICSharpCode.CodeConverter</PackageId>
1717
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1818
<PackageLicenseExpression>MIT</PackageLicenseExpression>

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="7.9.0.0" Language="en-US" Publisher="IC#Code"/>
4+
<Identity Id="7e2a69d6-193b-4cdf-878d-3370d5931942" Version="8.0.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/Web.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<PropertyGroup>
44
<TargetFramework>netcoreapp3.1</TargetFramework>
55
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
6-
<AssemblyVersion>7.9.0.0</AssemblyVersion>
7-
<FileVersion>7.9.0.0</FileVersion>
8-
<Version>7.9.0</Version>
6+
<AssemblyVersion>8.0.0.0</AssemblyVersion>
7+
<FileVersion>8.0.0.0</FileVersion>
8+
<Version>8.0.0</Version>
99
<LangVersion>7.3</LangVersion>
1010
<NoWarn>$(NoWarn);1998</NoWarn>
1111
</PropertyGroup>

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: 7.9.0.{build}
2+
version: 8.0.0.{build}
33
configuration: Debug
44
image: Visual Studio 2019
55

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pr:
77
variables:
88
solution: '**/CodeConverter.sln'
99
buildPlatform: 'Any CPU'
10-
buildVersion: '7.9.0.$(Build.BuildId)'
10+
buildVersion: '8.0.0.$(Build.BuildId)'
1111

1212
pool:
1313
vmImage: 'windows-2019'

0 commit comments

Comments
 (0)