Skip to content

Commit

Permalink
Version 1.1.1 bump
Browse files Browse the repository at this point in the history
  • Loading branch information
VitaliyMF committed Jan 4, 2024
1 parent 3406c91 commit 9788cc7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
15 changes: 11 additions & 4 deletions src/NReco.LambdaParser/NReco.LambdaParser.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<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>
<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.

Source code and examples: https://github.com/nreco/lambdaparser
</Description>
<Title>Dynamic expressions evaluator</Title>
<Copyright>Copyright (c) 2013-2023 Vitalii Fedorchenko</Copyright>
<Copyright>Copyright (c) 2013-2024 Vitalii Fedorchenko</Copyright>
<AssemblyTitle>NReco.LambdaParser</AssemblyTitle>
<VersionPrefix>1.1.0</VersionPrefix>
<VersionPrefix>1.1.1</VersionPrefix>
<Authors>Vitalii Fedorchenko</Authors>
<TargetFrameworks>netstandard2.0;netstandard1.3;net45</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand All @@ -14,7 +17,11 @@
<SignAssembly>False</SignAssembly>
<PackageId>NReco.LambdaParser</PackageId>
<PackageTags>LambdaParser;Formula;Parser;Math;Expression;Evaluator;Eval;LINQ-dynamic;netstandard;netcore;net45;</PackageTags>
<PackageReleaseNotes>Source code and examples: https://github.com/nreco/lambdaparser
<PackageReleaseNotes>
v.1.1.1 changes:
- added support for optional parameters in method calls #44 (via OptionsParamsInvokeMethod impl)
- added support for 'params' arguments in method calls #45 (via OptionsParamsInvokeMethod impl)

v.1.1.0 changes:
- variables in expressions #42 (to enable use LambdaParser.AllowVars)
- Sequence of ternary operators #43
Expand Down
6 changes: 3 additions & 3 deletions src/NReco.LambdaParser/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Vitalii Fedorchenko")]
[assembly: AssemblyProduct("NReco.LambdaParser")]
[assembly: AssemblyCopyright("Copyright © Vitalii Fedorchenko 2013-2023")]
[assembly: AssemblyCopyright("Copyright © Vitalii Fedorchenko 2013-2024")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: NeutralResourcesLanguage("en")]
Expand All @@ -26,5 +26,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
[assembly: AssemblyVersion("1.1.1.0")]
[assembly: AssemblyFileVersion("1.1.1.0")]

0 comments on commit 9788cc7

Please sign in to comment.