Skip to content

Commit

Permalink
release v4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dadhi committed Nov 23, 2023
1 parent 453cfb8 commit 3de443b
Show file tree
Hide file tree
Showing 8 changed files with 33 additions and 8 deletions.
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-v3.3.4-blue)](https://github.com/dadhi/FastExpressionCompiler/releases/tag/v4.0.0)
[![latest release notes](https://img.shields.io/badge/latest%20release%20notes-v3.3.4-blue)](https://github.com/dadhi/FastExpressionCompiler/releases/tag/v4.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, 7, .NET Standard 2.0, 2.1 and .NET 4.5
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ image:
- Ubuntu
- macOS

version: 4.0.0-b{build}
version: 4.0.1-b{build}

test: off

Expand Down
6 changes: 5 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>4.0.0</version>
<version>4.0.1</version>
<authors>Maksim Volkau</authors>
<copyright>Copyright © 2016-2023 Maksim Volkau</copyright>
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
Expand All @@ -12,6 +12,10 @@
<description>FastExpressionCompiler is 10-40x times faster than Expression.Compile()</description>
<tags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</tags>
<releaseNotes><![CDATA[
## v4.0.1 Bug-fix release
- fixed: #374 CompileFast doesn't work with HasFlag
## v4.0.0 Major release
- fixed: #352 xxxAssign doesn't work with MemberAccess
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>4.0.0</version>
<version>4.0.1</version>
<authors>Maksim Volkau</authors>
<copyright>Copyright © 2016-2023 Maksim Volkau</copyright>
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
Expand All @@ -12,6 +12,10 @@
<description>FastExpressionCompiler is 10-40x times faster than Expression.Compile()</description>
<tags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</tags>
<releaseNotes><![CDATA[
## v4.0.1 Bug-fix release
- fixed: #374 CompileFast doesn't work with HasFlag
## v4.0.0 Major release
- fixed: #352 xxxAssign doesn't work with MemberAccess
Expand Down
6 changes: 5 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>4.0.0</version>
<version>4.0.1</version>
<authors>Maksim Volkau</authors>
<copyright>Copyright © 2016-2023 Maksim Volkau</copyright>
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
Expand All @@ -12,6 +12,10 @@
<description>FastExpressionCompiler is 10-40x times faster than Expression.Compile()</description>
<tags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</tags>
<releaseNotes><![CDATA[
## v4.0.1 Bug-fix release
- fixed: #374 CompileFast doesn't work with HasFlag
## v4.0.0 Major release
- fixed: #352 xxxAssign doesn't work with MemberAccess
Expand Down
6 changes: 5 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>4.0.0</version>
<version>4.0.1</version>
<authors>Maksim Volkau</authors>
<copyright>Copyright © 2016-2023 Maksim Volkau</copyright>
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
Expand All @@ -12,6 +12,10 @@
<tags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</tags>
<icon>logo.png</icon>
<releaseNotes><![CDATA[
## v4.0.1 Bug-fix release
- fixed: #374 CompileFast doesn't work with HasFlag
## v4.0.0 Major release
- fixed: #352 xxxAssign doesn't work with MemberAccess
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TargetFrameworks Condition="'$(DevMode)' == 'true'">net45;netstandard2.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks Condition="'$(DevMode)' != 'true'">net45;netstandard2.0;netstandard2.1;net6.0;net7.0</TargetFrameworks>

<VersionPrefix>4.0.0</VersionPrefix>
<VersionPrefix>4.0.1</VersionPrefix>
<VersionSuffix></VersionSuffix>

<Product>FastExpressionCompiler.LightExpression</Product>
Expand All @@ -13,6 +13,10 @@
<Description>FastExpressionCompiler for LightExpression is 10-40x times faster than Expression.Compile()</Description>
<PackageTags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</PackageTags>
<PackageReleaseNotes><![CDATA[
## v4.0.1 Bug-fix release
- fixed: #374 CompileFast doesn't work with HasFlag
## v4.0.0 Major release
- fixed: #352 xxxAssign doesn't work with MemberAccess
Expand Down
7 changes: 6 additions & 1 deletion src/FastExpressionCompiler/FastExpressionCompiler.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,19 @@
<PropertyGroup>
<TargetFrameworks Condition="'$(DevMode)' == 'true'">net45;netstandard2.0;net7.0;net8.0</TargetFrameworks>
<TargetFrameworks Condition="'$(DevMode)' != 'true'">net45;netstandard2.0;netstandard2.1;net6.0;net7.0</TargetFrameworks>
<VersionPrefix>4.0.0</VersionPrefix>
<VersionPrefix>4.0.1</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Product>FastExpressionCompiler</Product>
<PackageId>$(Product)</PackageId>
<Title>$(Product)</Title>
<Description>FastExpressionCompiler is 10-40x times faster than Expression.Compile()</Description>
<PackageTags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</PackageTags>
<PackageReleaseNotes><![CDATA[
## v4.0.1 Bug-fix release
- fixed: #374 CompileFast doesn't work with HasFlag
## v4.0.0 Major release
- fixed: #352 xxxAssign doesn't work with MemberAccess
Expand Down

0 comments on commit 3de443b

Please sign in to comment.