Skip to content

Commit 159e686

Browse files
committed
releasing v3.3.2
1 parent c91b1fb commit 159e686

8 files changed

+29
-8
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.3.1
7+
set PKGVER=3.3.2
88

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

README.md

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

21-
[![latest release notes](https://img.shields.io/badge/latest%20release%20notes-v3.3.1-blue)](https://github.com/dadhi/FastExpressionCompiler/releases/tag/v3.3.1)
21+
[![latest release notes](https://img.shields.io/badge/latest%20release%20notes-v3.3.2-blue)](https://github.com/dadhi/FastExpressionCompiler/releases/tag/v3.3.2)
2222
[![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)
2323

2424
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.3.1-b{build}
6+
version: 3.3.2-b{build}
77

88
test: off
99

nuspecs/FastExpressionCompiler.Internal.src.nuspec

Lines changed: 6 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.3.1</version>
5+
<version>3.3.2</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2016-2022 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
@@ -13,6 +13,11 @@
1313
<tags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</tags>
1414
<releaseNotes><![CDATA[
1515
16+
## v3.3.2 Bug-fix release
17+
18+
- fixed: #335 FastExpressionCompiler.LightExpressions - MemberInit has recursive calls
19+
20+
1621
## v3.3.1 Optimization and bug-fix release
1722
1823
- fixed: #333 AccessViolationException and other suspicious behaviour on invoking result of CompileFast()

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.3.1</version>
5+
<version>3.3.2</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2016-2022 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.3.2 Bug-fix release
16+
17+
- fixed: #335 FastExpressionCompiler.LightExpressions - MemberInit has recursive calls
18+
1519
## v3.3.1 Optimization and bug-fix release
1620
1721
- fixed: #333 AccessViolationException and other suspicious behaviour on invoking result of CompileFast()

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.3.1</version>
5+
<version>3.3.2</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2016-2022 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.3.2 Bug-fix release
16+
17+
- fixed: #335 FastExpressionCompiler.LightExpressions - MemberInit has recursive calls
18+
1519
## v3.3.1 Optimization and bug-fix release
1620
1721
- fixed: #333 AccessViolationException and other suspicious behaviour on invoking result of CompileFast()

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.3.1</version>
5+
<version>3.3.2</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2016-2022 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.3.2 Bug-fix release
16+
17+
- fixed: #335 FastExpressionCompiler.LightExpressions - MemberInit has recursive calls
18+
1519
## v3.3.1 Optimization and bug-fix release
1620
1721
- fixed: #333 AccessViolationException and other suspicious behaviour on invoking result of CompileFast()

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.3.1</VersionPrefix>
5+
<VersionPrefix>3.3.2</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.3.2 Bug-fix release
16+
17+
- fixed: #335 FastExpressionCompiler.LightExpressions - MemberInit has recursive calls
18+
1519
## v3.3.1 Optimization and bug-fix release
1620
1721
- fixed: #333 AccessViolationException and other suspicious behaviour on invoking result of CompileFast()

0 commit comments

Comments
 (0)