From 6138b9c7496c7dc2c03cd713f44aaa1f1ae74861 Mon Sep 17 00:00:00 2001 From: Abbas Cyclewala Date: Fri, 1 Oct 2021 15:30:34 +0530 Subject: [PATCH] Abbasc52/version update (#246) * version update * updated changelog and readme --- CHANGELOG.md | 11 +++++++++++ README.md | 4 +++- RulesEngine.sln | 4 ++-- benchmark/RulesEngineBenchmark/RulesEngineBenchmark.csproj | 2 +- src/RulesEngine/RulesEngine.csproj | 4 ++-- 5 files changed, 19 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01a7370..9968662 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ All notable changes to this project will be documented in this file. + +## [3.4.0] +- Made RulesEngine Strong Name and Authenticode signed +- Renamed few models to streamline names (by @alexrich) + - `WorkflowRules` is renamed to `Workflow` + - `WorkflowRulesToInject` is renamed to `WorkflowsToInject` + - `RuleAction` is renamed to `RuleActions` + + **Note**: The old models are still supported but will be removed with version 4.0.0 + + ## [3.3.0] - Added support for actions in nested rules - Improved serialization support for System.Text.Json for workflow model diff --git a/README.md b/README.md index b25e9a5..fb965fc 100644 --- a/README.md +++ b/README.md @@ -112,7 +112,9 @@ A wrapper needs to be created over the Rules Engine package, which will get the _Note: To know in detail of the workings of Rules Engine, please visit [How it works section](https://github.com/microsoft/RulesEngine/wiki/Introduction#how-it-works) in [Rules Engine Wiki](https://github.com/microsoft/RulesEngine/wiki)._ -### 3rd Party Tools +## 3rd Party Tools + +### RulesEngine Editor There is an editor library with it's own [NuGet Package](https://www.nuget.org/packages/RulesEngineEditor/) written in Blazor, more information is in it's repo https://github.com/alexreich/RulesEngineEditor. #### Live Demo diff --git a/RulesEngine.sln b/RulesEngine.sln index 06370e3..1bb69ef 100644 --- a/RulesEngine.sln +++ b/RulesEngine.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.29123.89 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31717.71 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "RulesEngine", "src\RulesEngine\RulesEngine.csproj", "{CD4DFE6A-083B-478E-8377-77F474833E30}" EndProject diff --git a/benchmark/RulesEngineBenchmark/RulesEngineBenchmark.csproj b/benchmark/RulesEngineBenchmark/RulesEngineBenchmark.csproj index 3a7fe53..0e71ec3 100644 --- a/benchmark/RulesEngineBenchmark/RulesEngineBenchmark.csproj +++ b/benchmark/RulesEngineBenchmark/RulesEngineBenchmark.csproj @@ -6,7 +6,7 @@ - + diff --git a/src/RulesEngine/RulesEngine.csproj b/src/RulesEngine/RulesEngine.csproj index 9ff3934..d94cbca 100644 --- a/src/RulesEngine/RulesEngine.csproj +++ b/src/RulesEngine/RulesEngine.csproj @@ -2,11 +2,11 @@ netstandard2.0 - 3.3.0 + 3.4.0 Copyright (c) Microsoft Corporation. LICENSE https://github.com/microsoft/RulesEngine - Abbas Cyclewala, Dishant Munjal, Yogesh Prajapati, Alex Reich + Abbas Cyclewala, Dishant Munjal, Yogesh Prajapati Rules Engine is a package for abstracting business logic/rules/policies out of the system. This works in a very simple way by giving you an ability to put your rules in a store outside the core logic of the system thus ensuring that any change in rules doesn't affect the core system. https://github.com/microsoft/RulesEngine/blob/main/CHANGELOG.md BRE, Rules Engine, Abstraction