Skip to content

Commit b07ee63

Browse files
committedApr 2, 2025
release v5.1.1
1 parent 11d6f02 commit b07ee63

9 files changed

+57
-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=5.1.0
7+
set PKGVER=5.1.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

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-v5.1.0-blue)](https://github.com/dadhi/FastExpressionCompiler/releases/tag/v5.1.0)
19+
[![latest release notes](https://img.shields.io/badge/latest%20release%20notes-v5.1.1-blue)](https://github.com/dadhi/FastExpressionCompiler/releases/tag/v5.1.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

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

5-
version: 5.1.0-b{build}
5+
version: 5.1.1-b{build}
66

77
test: off
88

‎nuspecs/FastExpressionCompiler.Internal.src.nuspec

Lines changed: 9 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>5.1.0</version>
5+
<version>5.1.1</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2016-2025 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
@@ -12,6 +12,14 @@
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+
## v5.1.1. Bug-fix release
16+
17+
- fix: #461 InvalidProgramException when null checking type by ref
18+
- fix: #462 Optimize Equality comparison with null
19+
20+
**Full Changelog**: https://github.com/dadhi/FastExpressionCompiler/compare/v5.1.0...v5.1.1
21+
22+
1523
## v5.1.0 Small feature release
1624
1725
- add: #458 Add Support for TryFault

‎nuspecs/FastExpressionCompiler.LightExpression.Internal.src.nuspec

Lines changed: 9 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>5.1.0</version>
5+
<version>5.1.1</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2016-2025 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
@@ -12,6 +12,14 @@
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+
## v5.1.1. Bug-fix release
16+
17+
- fix: #461 InvalidProgramException when null checking type by ref
18+
- fix: #462 Optimize Equality comparison with null
19+
20+
**Full Changelog**: https://github.com/dadhi/FastExpressionCompiler/compare/v5.1.0...v5.1.1
21+
22+
1523
## v5.1.0 Small feature release
1624
1725
- add: #458 Add Support for TryFault

‎nuspecs/FastExpressionCompiler.LightExpression.src.nuspec

Lines changed: 9 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>5.1.0</version>
5+
<version>5.1.1</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2016-2025 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
@@ -12,6 +12,14 @@
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+
## v5.1.1. Bug-fix release
16+
17+
- fix: #461 InvalidProgramException when null checking type by ref
18+
- fix: #462 Optimize Equality comparison with null
19+
20+
**Full Changelog**: https://github.com/dadhi/FastExpressionCompiler/compare/v5.1.0...v5.1.1
21+
22+
1523
## v5.1.0 Small feature release
1624
1725
- add: #458 Add Support for TryFault

‎nuspecs/FastExpressionCompiler.src.nuspec

Lines changed: 9 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>5.1.0</version>
5+
<version>5.1.1</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2016-2025 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
@@ -12,6 +12,14 @@
1212
<tags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</tags>
1313
<icon>logo.png</icon>
1414
<releaseNotes><![CDATA[
15+
## v5.1.1. Bug-fix release
16+
17+
- fix: #461 InvalidProgramException when null checking type by ref
18+
- fix: #462 Optimize Equality comparison with null
19+
20+
**Full Changelog**: https://github.com/dadhi/FastExpressionCompiler/compare/v5.1.0...v5.1.1
21+
22+
1523
## v5.1.0 Small feature release
1624
1725
- add: #458 Add Support for TryFault

‎src/FastExpressionCompiler.LightExpression/FastExpressionCompiler.LightExpression.csproj

Lines changed: 9 additions & 1 deletion
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.1.0</VersionPrefix>
7+
<VersionPrefix>5.1.1</VersionPrefix>
88
<VersionSuffix></VersionSuffix>
99

1010
<Product>FastExpressionCompiler.LightExpression</Product>
@@ -14,6 +14,14 @@
1414
<Description>FastExpressionCompiler for LightExpression is 10-40x times faster than Expression.Compile()</Description>
1515
<PackageTags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</PackageTags>
1616
<PackageReleaseNotes><![CDATA[
17+
## v5.1.1. Bug-fix release
18+
19+
- fix: #461 InvalidProgramException when null checking type by ref
20+
- fix: #462 Optimize Equality comparison with null
21+
22+
**Full Changelog**: https://github.com/dadhi/FastExpressionCompiler/compare/v5.1.0...v5.1.1
23+
24+
1725
## v5.1.0 Small feature release
1826
1927
- add: #458 Add Support for TryFault

‎src/FastExpressionCompiler/FastExpressionCompiler.csproj

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,22 @@
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.1.0</VersionPrefix>
7+
<VersionPrefix>5.1.1</VersionPrefix>
88
<VersionSuffix></VersionSuffix>
99
<Product>FastExpressionCompiler</Product>
1010
<PackageId>$(Product)</PackageId>
1111
<Title>$(Product)</Title>
1212
<Description>FastExpressionCompiler 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+
## v5.1.1. Bug-fix release
16+
17+
- fix: #461 InvalidProgramException when null checking type by ref
18+
- fix: #462 Optimize Equality comparison with null
19+
20+
**Full Changelog**: https://github.com/dadhi/FastExpressionCompiler/compare/v5.1.0...v5.1.1
21+
22+
1523
## v5.1.0 Small feature release
1624
1725
- add: #458 Add Support for TryFault

0 commit comments

Comments
 (0)