Skip to content

Commit 7320208

Browse files
committed
releasing v3.1.0
1 parent b596281 commit 7320208

File tree

9 files changed

+56
-10
lines changed

9 files changed

+56
-10
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.1.0-preview-02
7+
set PKGVER=3.1.0
88

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

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-v3.0.5-blue)](https://github.com/dadhi/FastExpressionCompiler/releases/tag/v3.0.5)
19+
[![latest release notes](https://img.shields.io/badge/latest%20release%20notes-v3.1.0-blue)](https://github.com/dadhi/FastExpressionCompiler/releases/tag/v3.1.0)
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 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.0.5-b{build}
6+
version: 3.1.0-b{build}
77

88
test: off
99

nuspecs/FastExpressionCompiler.Internal.src.nuspec

Lines changed: 10 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.0.5</version>
5+
<version>3.1.0</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2016-2021 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
@@ -12,6 +12,15 @@
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.1.0 Feature and bug-fix release
16+
17+
- added: #297 Add custom Constant to string output in the ToCSharpString and ToExpressionString
18+
- added: #303 Add CompilerFlags.ThrowOnNotSupportedException and throw NotSupportedExpressionException when the flag is passed to CompileFast
19+
- fixed: #301 Another case of the InvalidOperationException in the Mapster
20+
- fixed: ListInit compilation for the Dictionary
21+
- fixed: the lookup for the non-public property setter
22+
23+
1524
## v3.0.5 Bug-fix release
1625
1726
- fixed: another case in #301 InvalidOperationException in the Mapster

nuspecs/FastExpressionCompiler.LightExpression.Internal.src.nuspec

Lines changed: 10 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.0.5</version>
5+
<version>3.1.0</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2016-2021 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
@@ -12,6 +12,15 @@
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.1.0 Feature and bug-fix release
16+
17+
- added: #297 Add custom Constant to string output in the ToCSharpString and ToExpressionString
18+
- added: #303 Add CompilerFlags.ThrowOnNotSupportedException and throw NotSupportedExpressionException when the flag is passed to CompileFast
19+
- fixed: #301 Another case of the InvalidOperationException in the Mapster
20+
- fixed: ListInit compilation for the Dictionary
21+
- fixed: the lookup for the non-public property setter
22+
23+
1524
## v3.0.5 Bug-fix release
1625
1726
- fixed: another case in #301 InvalidOperationException in the Mapster

nuspecs/FastExpressionCompiler.LightExpression.src.nuspec

Lines changed: 10 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.0.5</version>
5+
<version>3.1.0</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2016-2021 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
@@ -12,6 +12,15 @@
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.1.0 Feature and bug-fix release
16+
17+
- added: #297 Add custom Constant to string output in the ToCSharpString and ToExpressionString
18+
- added: #303 Add CompilerFlags.ThrowOnNotSupportedException and throw NotSupportedExpressionException when the flag is passed to CompileFast
19+
- fixed: #301 Another case of the InvalidOperationException in the Mapster
20+
- fixed: ListInit compilation for the Dictionary
21+
- fixed: the lookup for the non-public property setter
22+
23+
1524
## v3.0.5 Bug-fix release
1625
1726
- fixed: another case in #301 InvalidOperationException in the Mapster

nuspecs/FastExpressionCompiler.src.nuspec

Lines changed: 10 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.0.5</version>
5+
<version>3.1.0</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2016-2021 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/FastExpressionCompiler</projectUrl>
@@ -12,6 +12,15 @@
1212
<tags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</tags>
1313
<icon>logo.png</icon>
1414
<releaseNotes><![CDATA[
15+
## v3.1.0 Feature and bug-fix release
16+
17+
- added: #297 Add custom Constant to string output in the ToCSharpString and ToExpressionString
18+
- added: #303 Add CompilerFlags.ThrowOnNotSupportedException and throw NotSupportedExpressionException when the flag is passed to CompileFast
19+
- fixed: #301 Another case of the InvalidOperationException in the Mapster
20+
- fixed: ListInit compilation for the Dictionary
21+
- fixed: the lookup for the non-public property setter
22+
23+
1524
## v3.0.5 Bug-fix release
1625
1726
- fixed: another case in #301 InvalidOperationException in the Mapster

src/FastExpressionCompiler.LightExpression/FastExpressionCompiler.LightExpression.csproj

Lines changed: 10 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.0.5</VersionPrefix>
5+
<VersionPrefix>3.1.0</VersionPrefix>
66
<VersionSuffix></VersionSuffix>
77

88
<Product>FastExpressionCompiler.LightExpression</Product>
@@ -12,6 +12,15 @@
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.1.0 Feature and bug-fix release
16+
17+
- added: #297 Add custom Constant to string output in the ToCSharpString and ToExpressionString
18+
- added: #303 Add CompilerFlags.ThrowOnNotSupportedException and throw NotSupportedExpressionException when the flag is passed to CompileFast
19+
- fixed: #301 Another case of the InvalidOperationException in the Mapster
20+
- fixed: ListInit compilation for the Dictionary
21+
- fixed: the lookup for the non-public property setter
22+
23+
1524
## v3.0.5 Bug-fix release
1625
1726
- fixed: another case in #301 InvalidOperationException in the Mapster

src/FastExpressionCompiler/FastExpressionCompiler.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,22 @@
22
<PropertyGroup>
33
<TargetFrameworks>net45;netstandard2.0;netstandard2.1</TargetFrameworks>
44
<VersionPrefix>3.1.0</VersionPrefix>
5-
<VersionSuffix>preview-02</VersionSuffix>
5+
<VersionSuffix></VersionSuffix>
66
<Product>FastExpressionCompiler</Product>
77
<PackageId>$(Product)</PackageId>
88
<Title>$(Product)</Title>
99
<Description>FastExpressionCompiler is 10-40x times faster than Expression.Compile()</Description>
1010
<PackageTags>Performance;Expression;ExpressionTree;Compile;DynamicMethod;IL;ILEmit;DryIoc;ExpressionToCodeLib</PackageTags>
1111
<PackageReleaseNotes><![CDATA[
12-
## v3.1.0 Bug-fix release
12+
## v3.1.0 Feature and bug-fix release
1313
1414
- added: #297 Add custom Constant to string output in the ToCSharpString and ToExpressionString
1515
- added: #303 Add CompilerFlags.ThrowOnNotSupportedException and throw NotSupportedExpressionException when the flag is passed to CompileFast
1616
- fixed: #301 Another case of the InvalidOperationException in the Mapster
1717
- fixed: ListInit compilation for the Dictionary
1818
- fixed: the lookup for the non-public property setter
1919
20+
2021
## v3.0.5 Bug-fix release
2122
2223
- fixed: another case in #301 InvalidOperationException in the Mapster

0 commit comments

Comments
 (0)