Skip to content

Commit b852bee

Browse files
committed
release v5.0.1
1 parent 2a640ed commit b852bee

10 files changed

+69
-10
lines changed

BuildScripts/NuGetPublish.bat

+1-1
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=5.0.0
7+
set PKGVER=5.0.1
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

+1-1
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-v5.0.0-blue)](https://github.com/dadhi/FastExpressionCompiler/releases/tag/v5.0.0)
19+
[![latest release notes](https://img.shields.io/badge/latest%20release%20notes-v5.0.1-blue)](https://github.com/dadhi/FastExpressionCompiler/releases/tag/v5.0.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 6+, .NET 4.7.2+, .NET Standard 2.0+

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ image:
22
- Visual Studio 2022
33
- Ubuntu
44

5-
version: 5.0.0-b{build}
5+
version: 5.0.1-b{build}
66

77
test: off
88

build.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@echo off
22
setlocal EnableDelayedExpansion
33

4-
echo: # BUILDING AND RUNNNG THE TESTS IN RELEASE MODE
4+
echo: # BUILDING AND RUNNING THE TESTS IN RELEASE MODE
55
echo:
66
echo:
77

nuspecs/FastExpressionCompiler.Internal.src.nuspec

+11-1
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>5.0.0</version>
5+
<version>5.0.1</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2016-2024 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
@@ -13,6 +13,16 @@
1313
<tags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</tags>
1414
<releaseNotes><![CDATA[
1515
16+
## v5.0.1 Bug-fix release
17+
18+
- fix: #437 Shared variables with nested lambdas returning incorrect values
19+
- fix: #439 Support unused Field access in Block
20+
- fix: #440 Errors with simplified Switch cases
21+
- fix: #441 Fails to pass Constant as call parameter by-reference
22+
- fix: #442 TryCatch and the Goto outside problems
23+
- fix: #443 Nested Calls with Lambda Parameters Throwing NotSupportedExpressionException
24+
25+
1626
## v5.0.0 Major feature release
1727
1828
- feat: #271 Add conversion from the System Expression to the Light Expression to allow hoisted system expression embedding in the larger light expression

nuspecs/FastExpressionCompiler.LightExpression.Internal.src.nuspec

+11-1
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>5.0.0</version>
5+
<version>5.0.1</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2016-2024 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
@@ -13,6 +13,16 @@
1313
<tags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</tags>
1414
<releaseNotes><![CDATA[
1515
16+
## v5.0.1 Bug-fix release
17+
18+
- fix: #437 Shared variables with nested lambdas returning incorrect values
19+
- fix: #439 Support unused Field access in Block
20+
- fix: #440 Errors with simplified Switch cases
21+
- fix: #441 Fails to pass Constant as call parameter by-reference
22+
- fix: #442 TryCatch and the Goto outside problems
23+
- fix: #443 Nested Calls with Lambda Parameters Throwing NotSupportedExpressionException
24+
25+
1626
## v5.0.0 Major feature release
1727
1828
- feat: #271 Add conversion from the System Expression to the Light Expression to allow hoisted system expression embedding in the larger light expression

nuspecs/FastExpressionCompiler.LightExpression.src.nuspec

+11-1
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>5.0.0</version>
5+
<version>5.0.1</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2016-2024 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
@@ -13,6 +13,16 @@
1313
<tags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</tags>
1414
<releaseNotes><![CDATA[
1515
16+
## v5.0.1 Bug-fix release
17+
18+
- fix: #437 Shared variables with nested lambdas returning incorrect values
19+
- fix: #439 Support unused Field access in Block
20+
- fix: #440 Errors with simplified Switch cases
21+
- fix: #441 Fails to pass Constant as call parameter by-reference
22+
- fix: #442 TryCatch and the Goto outside problems
23+
- fix: #443 Nested Calls with Lambda Parameters Throwing NotSupportedExpressionException
24+
25+
1626
## v5.0.0 Major feature release
1727
1828
- feat: #271 Add conversion from the System Expression to the Light Expression to allow hoisted system expression embedding in the larger light expression

nuspecs/FastExpressionCompiler.src.nuspec

+11-1
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>5.0.0</version>
5+
<version>5.0.1</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2016-2024 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
@@ -12,6 +12,16 @@
1212
<tags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</tags>
1313
<icon>logo.png</icon>
1414
<releaseNotes><![CDATA[
15+
## v5.0.1 Bug-fix release
16+
17+
- fix: #437 Shared variables with nested lambdas returning incorrect values
18+
- fix: #439 Support unused Field access in Block
19+
- fix: #440 Errors with simplified Switch cases
20+
- fix: #441 Fails to pass Constant as call parameter by-reference
21+
- fix: #442 TryCatch and the Goto outside problems
22+
- fix: #443 Nested Calls with Lambda Parameters Throwing NotSupportedExpressionException
23+
24+
1525
## v5.0.0 Major feature release
1626
1727
- feat: #271 Add conversion from the System Expression to the Light Expression to allow hoisted system expression embedding in the larger light expression

src/FastExpressionCompiler.LightExpression/FastExpressionCompiler.LightExpression.csproj

+10-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks Condition=" '$(LatestSupportedNet)' == 'net8.0' ">net472;netstandard2.0;netstandard2.1;net6.0;net8.0</TargetFrameworks>
55
<TargetFrameworks Condition=" '$(LatestSupportedNet)' == 'net9.0' ">net472;netstandard2.0;netstandard2.1;net6.0;net8.0;net9.0</TargetFrameworks>
66

7-
<VersionPrefix>5.0.0</VersionPrefix>
7+
<VersionPrefix>5.0.1</VersionPrefix>
88
<VersionSuffix></VersionSuffix>
99

1010
<Product>FastExpressionCompiler.LightExpression</Product>
@@ -15,6 +15,15 @@
1515
<PackageTags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</PackageTags>
1616
<PackageReleaseNotes><![CDATA[
1717
18+
## v5.0.1 Bug-fix release
19+
20+
- fix: #437 Shared variables with nested lambdas returning incorrect values
21+
- fix: #439 Support unused Field access in Block
22+
- fix: #440 Errors with simplified Switch cases
23+
- fix: #441 Fails to pass Constant as call parameter by-reference
24+
- fix: #442 TryCatch and the Goto outside problems
25+
- fix: #443 Nested Calls with Lambda Parameters Throwing NotSupportedExpressionException
26+
1827
## v5.0.0 Major feature release
1928
2029
- feat: #271 Add conversion from the System Expression to the Light Expression to allow hoisted system expression embedding in the larger light expression

src/FastExpressionCompiler/FastExpressionCompiler.csproj

+11-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks Condition=" '$(LatestSupportedNet)' == 'net8.0' ">net472;netstandard2.0;netstandard2.1;net6.0;net8.0</TargetFrameworks>
55
<TargetFrameworks Condition=" '$(LatestSupportedNet)' == 'net9.0' ">net472;netstandard2.0;netstandard2.1;net6.0;net8.0;net9.0</TargetFrameworks>
66

7-
<VersionPrefix>5.0.0</VersionPrefix>
7+
<VersionPrefix>5.0.1</VersionPrefix>
88
<VersionSuffix></VersionSuffix>
99
<Product>FastExpressionCompiler</Product>
1010
<PackageId>$(Product)</PackageId>
@@ -13,6 +13,16 @@
1313
<PackageTags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</PackageTags>
1414
<PackageReleaseNotes><![CDATA[
1515
16+
## v5.0.1 Bug-fix release
17+
18+
- fix: #437 Shared variables with nested lambdas returning incorrect values
19+
- fix: #439 Support unused Field access in Block
20+
- fix: #440 Errors with simplified Switch cases
21+
- fix: #441 Fails to pass Constant as call parameter by-reference
22+
- fix: #442 TryCatch and the Goto outside problems
23+
- fix: #443 Nested Calls with Lambda Parameters Throwing NotSupportedExpressionException
24+
25+
1626
## v5.0.0 Major feature release
1727
1828
- feat: #271 Add conversion from the System Expression to the Light Expression to allow hoisted system expression embedding in the larger light expression

0 commit comments

Comments
 (0)