Skip to content

Commit

Permalink
release v5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dadhi committed Dec 23, 2024
1 parent 2a640ed commit b852bee
Show file tree
Hide file tree
Showing 10 changed files with 69 additions and 10 deletions.
2 changes: 1 addition & 1 deletion BuildScripts/NuGetPublish.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set PACKAGES=..\.dist
set SOURCE=https://api.nuget.org/v3/index.json
set /p APIKEY=<"..\..\ApiKey.txt"

set PKGVER=5.0.0
set PKGVER=5.0.1

dotnet nuget push "%PACKAGES%\FastExpressionCompiler.%PKGVER%.nupkg" -k %APIKEY% -s %SOURCE% --skip-duplicate
dotnet nuget push "%PACKAGES%\FastExpressionCompiler.src.%PKGVER%.nupkg" -k %APIKEY% -s %SOURCE% --skip-duplicate
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
[Apex.Serialization]: https://github.com/dbolin/Apex.Serialization
[MapsterMapper]: https://github.com/MapsterMapper/Mapster

[![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)
[![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)
[![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)

Targets .NET 6+, .NET 4.7.2+, .NET Standard 2.0+
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ image:
- Visual Studio 2022
- Ubuntu

version: 5.0.0-b{build}
version: 5.0.1-b{build}

test: off

Expand Down
2 changes: 1 addition & 1 deletion build.bat
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@echo off
setlocal EnableDelayedExpansion

echo: # BUILDING AND RUNNNG THE TESTS IN RELEASE MODE
echo: # BUILDING AND RUNNING THE TESTS IN RELEASE MODE
echo:
echo:

Expand Down
12 changes: 11 additions & 1 deletion nuspecs/FastExpressionCompiler.Internal.src.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata minClientVersion="3.3.0">
<id>FastExpressionCompiler.Internal.src</id>
<version>5.0.0</version>
<version>5.0.1</version>
<authors>Maksim Volkau</authors>
<copyright>Copyright © 2016-2024 Maksim Volkau</copyright>
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
Expand All @@ -13,6 +13,16 @@
<tags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</tags>
<releaseNotes><![CDATA[
## v5.0.1 Bug-fix release
- fix: #437 Shared variables with nested lambdas returning incorrect values
- fix: #439 Support unused Field access in Block
- fix: #440 Errors with simplified Switch cases
- fix: #441 Fails to pass Constant as call parameter by-reference
- fix: #442 TryCatch and the Goto outside problems
- fix: #443 Nested Calls with Lambda Parameters Throwing NotSupportedExpressionException
## v5.0.0 Major feature release
- feat: #271 Add conversion from the System Expression to the Light Expression to allow hoisted system expression embedding in the larger light expression
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata minClientVersion="3.3.0">
<id>FastExpressionCompiler.LightExpression.Internal.src</id>
<version>5.0.0</version>
<version>5.0.1</version>
<authors>Maksim Volkau</authors>
<copyright>Copyright © 2016-2024 Maksim Volkau</copyright>
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
Expand All @@ -13,6 +13,16 @@
<tags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</tags>
<releaseNotes><![CDATA[
## v5.0.1 Bug-fix release
- fix: #437 Shared variables with nested lambdas returning incorrect values
- fix: #439 Support unused Field access in Block
- fix: #440 Errors with simplified Switch cases
- fix: #441 Fails to pass Constant as call parameter by-reference
- fix: #442 TryCatch and the Goto outside problems
- fix: #443 Nested Calls with Lambda Parameters Throwing NotSupportedExpressionException
## v5.0.0 Major feature release
- feat: #271 Add conversion from the System Expression to the Light Expression to allow hoisted system expression embedding in the larger light expression
Expand Down
12 changes: 11 additions & 1 deletion nuspecs/FastExpressionCompiler.LightExpression.src.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata minClientVersion="3.3.0">
<id>FastExpressionCompiler.LightExpression.src</id>
<version>5.0.0</version>
<version>5.0.1</version>
<authors>Maksim Volkau</authors>
<copyright>Copyright © 2016-2024 Maksim Volkau</copyright>
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
Expand All @@ -13,6 +13,16 @@
<tags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</tags>
<releaseNotes><![CDATA[
## v5.0.1 Bug-fix release
- fix: #437 Shared variables with nested lambdas returning incorrect values
- fix: #439 Support unused Field access in Block
- fix: #440 Errors with simplified Switch cases
- fix: #441 Fails to pass Constant as call parameter by-reference
- fix: #442 TryCatch and the Goto outside problems
- fix: #443 Nested Calls with Lambda Parameters Throwing NotSupportedExpressionException
## v5.0.0 Major feature release
- feat: #271 Add conversion from the System Expression to the Light Expression to allow hoisted system expression embedding in the larger light expression
Expand Down
12 changes: 11 additions & 1 deletion nuspecs/FastExpressionCompiler.src.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata minClientVersion="3.3.0">
<id>FastExpressionCompiler.src</id>
<version>5.0.0</version>
<version>5.0.1</version>
<authors>Maksim Volkau</authors>
<copyright>Copyright © 2016-2024 Maksim Volkau</copyright>
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
Expand All @@ -12,6 +12,16 @@
<tags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</tags>
<icon>logo.png</icon>
<releaseNotes><![CDATA[
## v5.0.1 Bug-fix release
- fix: #437 Shared variables with nested lambdas returning incorrect values
- fix: #439 Support unused Field access in Block
- fix: #440 Errors with simplified Switch cases
- fix: #441 Fails to pass Constant as call parameter by-reference
- fix: #442 TryCatch and the Goto outside problems
- fix: #443 Nested Calls with Lambda Parameters Throwing NotSupportedExpressionException
## v5.0.0 Major feature release
- feat: #271 Add conversion from the System Expression to the Light Expression to allow hoisted system expression embedding in the larger light expression
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks Condition=" '$(LatestSupportedNet)' == 'net8.0' ">net472;netstandard2.0;netstandard2.1;net6.0;net8.0</TargetFrameworks>
<TargetFrameworks Condition=" '$(LatestSupportedNet)' == 'net9.0' ">net472;netstandard2.0;netstandard2.1;net6.0;net8.0;net9.0</TargetFrameworks>

<VersionPrefix>5.0.0</VersionPrefix>
<VersionPrefix>5.0.1</VersionPrefix>
<VersionSuffix></VersionSuffix>

<Product>FastExpressionCompiler.LightExpression</Product>
Expand All @@ -15,6 +15,15 @@
<PackageTags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</PackageTags>
<PackageReleaseNotes><![CDATA[
## v5.0.1 Bug-fix release
- fix: #437 Shared variables with nested lambdas returning incorrect values
- fix: #439 Support unused Field access in Block
- fix: #440 Errors with simplified Switch cases
- fix: #441 Fails to pass Constant as call parameter by-reference
- fix: #442 TryCatch and the Goto outside problems
- fix: #443 Nested Calls with Lambda Parameters Throwing NotSupportedExpressionException
## v5.0.0 Major feature release
- feat: #271 Add conversion from the System Expression to the Light Expression to allow hoisted system expression embedding in the larger light expression
Expand Down
12 changes: 11 additions & 1 deletion src/FastExpressionCompiler/FastExpressionCompiler.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks Condition=" '$(LatestSupportedNet)' == 'net8.0' ">net472;netstandard2.0;netstandard2.1;net6.0;net8.0</TargetFrameworks>
<TargetFrameworks Condition=" '$(LatestSupportedNet)' == 'net9.0' ">net472;netstandard2.0;netstandard2.1;net6.0;net8.0;net9.0</TargetFrameworks>

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

0 comments on commit b852bee

Please sign in to comment.