Skip to content

Commit

Permalink
release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgerlag committed Sep 15, 2019
1 parent 89163d2 commit 4e772e4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
10 changes: 10 additions & 0 deletions ReleaseNotes/2.1.0.md
@@ -0,0 +1,10 @@
# Workflow Core 2.1.0

* Adds the `SyncWorkflowRunner` service that enables workflows to be executed synchronously, you can also avoid persisting the state to the persistence store entirely

usage
```c#
var runner = serviceProvider.GetService<ISyncWorkflowRunner>();
...
var worfklow = await runner.RunWorkflowSync("my-workflow", 1, data, TimeSpan.FromSeconds(10));
```
1 change: 1 addition & 0 deletions WorkflowCore.sln
Expand Up @@ -99,6 +99,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ReleaseNotes", "ReleaseNote
ReleaseNotes\1.9.2.md = ReleaseNotes\1.9.2.md
ReleaseNotes\1.9.3.md = ReleaseNotes\1.9.3.md
ReleaseNotes\2.0.0.md = ReleaseNotes\2.0.0.md
ReleaseNotes\2.1.0.md = ReleaseNotes\2.1.0.md
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WorkflowCore.Sample14", "src\samples\WorkflowCore.Sample14\WorkflowCore.Sample14.csproj", "{6BC66637-B42A-4334-ADFB-DBEC9F29D293}"
Expand Down

0 comments on commit 4e772e4

Please sign in to comment.