Skip to content

Commit f27141b

Browse files
committed
releasing v3.2.1
1 parent 89bceaa commit f27141b

9 files changed

+33
-9
lines changed

BuildScripts/NuGetPublish.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set PACKAGES=..\.dist
44
set SOURCE=https://api.nuget.org/v3/index.json
55
set /p APIKEY=<"..\..\ApiKey.txt"
66

7-
set PKGVER=3.2.0
7+
set PKGVER=3.2.1
88

99
dotnet nuget push "%PACKAGES%\FastExpressionCompiler.%PKGVER%.nupkg" -k %APIKEY% -s %SOURCE%
1010
dotnet nuget push "%PACKAGES%\FastExpressionCompiler.src.%PKGVER%.nupkg" -k %APIKEY% -s %SOURCE%

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
[Apex.Serialization]: https://github.com/dbolin/Apex.Serialization
1717
[MapsterMapper]: https://github.com/MapsterMapper/Mapster
1818

19-
[![latest release notes](https://img.shields.io/badge/latest%20release%20notes-v3.2.0-blue)](https://github.com/dadhi/FastExpressionCompiler/releases/tag/v3.2.0)
19+
[![latest release notes](https://img.shields.io/badge/latest%20release%20notes-v3.2.1-blue)](https://github.com/dadhi/FastExpressionCompiler/releases/tag/v3.2.1)
2020
[![Windows build](https://ci.appveyor.com/api/projects/status/4iyhed69l3k0k37o/branch/master?svg=true)](https://ci.appveyor.com/project/MaksimVolkau/fastexpressioncompiler/branch/master)[![license](https://img.shields.io/github/license/dadhi/FastExpressionCompiler.svg)](http://opensource.org/licenses/MIT)
2121

2222
Targets .NET Standard 2.0, 2.1 and .NET 4.5

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ image:
33
- Ubuntu
44
- macOS
55

6-
version: 3.2.0-b{build}
6+
version: 3.2.1-b{build}
77

88
test: off
99

nuspecs/FastExpressionCompiler.Internal.src.nuspec

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata minClientVersion="3.3.0">
44
<id>FastExpressionCompiler.Internal.src</id>
5-
<version>3.2.0</version>
5+
<version>3.2.1</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2016-2021 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
@@ -12,6 +12,10 @@
1212
<description>FastExpressionCompiler is 10-40x times faster than Expression.Compile()</description>
1313
<tags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</tags>
1414
<releaseNotes><![CDATA[
15+
## v3.2.1 Bug-fix release
16+
17+
- fixed: #307 Switch with fall through throws "System.InvalidProgramException: 'Common Language Runtime detected an invalid program.'"
18+
1519
## v3.2.0 Bug-fix and optimization release
1620
1721
- fixed: #305 CompileFast generates incorrect code with arrays and printing

nuspecs/FastExpressionCompiler.LightExpression.Internal.src.nuspec

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata minClientVersion="3.3.0">
44
<id>FastExpressionCompiler.LightExpression.Internal.src</id>
5-
<version>3.2.0</version>
5+
<version>3.2.1</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2016-2021 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
@@ -12,6 +12,10 @@
1212
<description>FastExpressionCompiler is 10-40x times faster than Expression.Compile()</description>
1313
<tags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</tags>
1414
<releaseNotes><![CDATA[
15+
## v3.2.1 Bug-fix release
16+
17+
- fixed: #307 Switch with fall through throws "System.InvalidProgramException: 'Common Language Runtime detected an invalid program.'"
18+
1519
## v3.2.0 Bug-fix and optimization release
1620
1721
- fixed: #305 CompileFast generates incorrect code with arrays and printing

nuspecs/FastExpressionCompiler.LightExpression.src.nuspec

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata minClientVersion="3.3.0">
44
<id>FastExpressionCompiler.LightExpression.src</id>
5-
<version>3.2.0</version>
5+
<version>3.2.1</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2016-2021 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
@@ -12,6 +12,10 @@
1212
<description>FastExpressionCompiler is 10-40x times faster than Expression.Compile()</description>
1313
<tags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</tags>
1414
<releaseNotes><![CDATA[
15+
## v3.2.1 Bug-fix release
16+
17+
- fixed: #307 Switch with fall through throws "System.InvalidProgramException: 'Common Language Runtime detected an invalid program.'"
18+
1519
## v3.2.0 Bug-fix and optimization release
1620
1721
- fixed: #305 CompileFast generates incorrect code with arrays and printing

nuspecs/FastExpressionCompiler.src.nuspec

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata minClientVersion="3.3.0">
44
<id>FastExpressionCompiler.src</id>
5-
<version>3.2.0</version>
5+
<version>3.2.1</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2016-2021 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
@@ -12,6 +12,10 @@
1212
<tags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</tags>
1313
<icon>logo.png</icon>
1414
<releaseNotes><![CDATA[
15+
## v3.2.1 Bug-fix release
16+
17+
- fixed: #307 Switch with fall through throws "System.InvalidProgramException: 'Common Language Runtime detected an invalid program.'"
18+
1519
## v3.2.0 Bug-fix and optimization release
1620
1721
- fixed: #305 CompileFast generates incorrect code with arrays and printing

src/FastExpressionCompiler.LightExpression/FastExpressionCompiler.LightExpression.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<TargetFrameworks>net45;netstandard2.0;netstandard2.1</TargetFrameworks>
44

5-
<VersionPrefix>3.2.0</VersionPrefix>
5+
<VersionPrefix>3.2.1</VersionPrefix>
66
<VersionSuffix></VersionSuffix>
77

88
<Product>FastExpressionCompiler.LightExpression</Product>
@@ -12,6 +12,10 @@
1212
<Description>FastExpressionCompiler for LightExpression is 10-40x times faster than Expression.Compile()</Description>
1313
<PackageTags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</PackageTags>
1414
<PackageReleaseNotes><![CDATA[
15+
## v3.2.1 Bug-fix release
16+
17+
- fixed: #307 Switch with fall through throws "System.InvalidProgramException: 'Common Language Runtime detected an invalid program.'"
18+
1519
## v3.2.0 Bug-fix and optimization release
1620
1721
- fixed: #305 CompileFast generates incorrect code with arrays and printing

src/FastExpressionCompiler/FastExpressionCompiler.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>net45;netstandard2.0;netstandard2.1</TargetFrameworks>
4-
<VersionPrefix>3.2.0</VersionPrefix>
4+
<VersionPrefix>3.2.1</VersionPrefix>
55
<VersionSuffix></VersionSuffix>
66
<Product>FastExpressionCompiler</Product>
77
<PackageId>$(Product)</PackageId>
88
<Title>$(Product)</Title>
99
<Description>FastExpressionCompiler is 10-40x times faster than Expression.Compile()</Description>
1010
<PackageTags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</PackageTags>
1111
<PackageReleaseNotes><![CDATA[
12+
## v3.2.1 Bug-fix release
13+
14+
- fixed: #307 Switch with fall through throws "System.InvalidProgramException: 'Common Language Runtime detected an invalid program.'"
15+
1216
## v3.2.0 Bug-fix and optimization release
1317
1418
- fixed: #305 CompileFast generates incorrect code with arrays and printing

0 commit comments

Comments
 (0)