Skip to content

Commit 9788cc7

Browse files
committed
Version 1.1.1 bump
1 parent 3406c91 commit 9788cc7

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

src/NReco.LambdaParser/NReco.LambdaParser.csproj

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<Description>Runtime expressions parser and evaluator (formulas, conditions, method calls, properties/indexers etc). Builds LINQ expression tree and compiles it to lambda delegate with full support of dynamically typed variables.</Description>
4+
<Description>Runtime expressions parser and evaluator (formulas, conditions, method calls, properties/indexers etc). Builds LINQ expression tree and compiles it to lambda delegate with full support of dynamically typed variables.
5+
6+
Source code and examples: https://github.com/nreco/lambdaparser
7+
</Description>
58
<Title>Dynamic expressions evaluator</Title>
6-
<Copyright>Copyright (c) 2013-2023 Vitalii Fedorchenko</Copyright>
9+
<Copyright>Copyright (c) 2013-2024 Vitalii Fedorchenko</Copyright>
710
<AssemblyTitle>NReco.LambdaParser</AssemblyTitle>
8-
<VersionPrefix>1.1.0</VersionPrefix>
11+
<VersionPrefix>1.1.1</VersionPrefix>
912
<Authors>Vitalii Fedorchenko</Authors>
1013
<TargetFrameworks>netstandard2.0;netstandard1.3;net45</TargetFrameworks>
1114
<GenerateDocumentationFile>true</GenerateDocumentationFile>
@@ -14,7 +17,11 @@
1417
<SignAssembly>False</SignAssembly>
1518
<PackageId>NReco.LambdaParser</PackageId>
1619
<PackageTags>LambdaParser;Formula;Parser;Math;Expression;Evaluator;Eval;LINQ-dynamic;netstandard;netcore;net45;</PackageTags>
17-
<PackageReleaseNotes>Source code and examples: https://github.com/nreco/lambdaparser
20+
<PackageReleaseNotes>
21+
v.1.1.1 changes:
22+
- added support for optional parameters in method calls #44 (via OptionsParamsInvokeMethod impl)
23+
- added support for 'params' arguments in method calls #45 (via OptionsParamsInvokeMethod impl)
24+
1825
v.1.1.0 changes:
1926
- variables in expressions #42 (to enable use LambdaParser.AllowVars)
2027
- Sequence of ternary operators #43

src/NReco.LambdaParser/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
[assembly: AssemblyConfiguration("")]
1212
[assembly: AssemblyCompany("Vitalii Fedorchenko")]
1313
[assembly: AssemblyProduct("NReco.LambdaParser")]
14-
[assembly: AssemblyCopyright("Copyright © Vitalii Fedorchenko 2013-2023")]
14+
[assembly: AssemblyCopyright("Copyright © Vitalii Fedorchenko 2013-2024")]
1515
[assembly: AssemblyTrademark("")]
1616
[assembly: AssemblyCulture("")]
1717
[assembly: NeutralResourcesLanguage("en")]
@@ -26,5 +26,5 @@
2626
// You can specify all the values or you can default the Build and Revision Numbers
2727
// by using the '*' as shown below:
2828
// [assembly: AssemblyVersion("1.0.*")]
29-
[assembly: AssemblyVersion("1.1.0.0")]
30-
[assembly: AssemblyFileVersion("1.1.0.0")]
29+
[assembly: AssemblyVersion("1.1.1.0")]
30+
[assembly: AssemblyFileVersion("1.1.1.0")]

0 commit comments

Comments
 (0)