Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgerlag committed Feb 3, 2019
1 parent e183903 commit 0bc1631
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 13 deletions.
6 changes: 6 additions & 0 deletions ReleaseNotes/1.8.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Workflow Core 1.8.1

Thank you to @MarioAndron

This release adds a feature where a DI scope is created around the construction of steps that are registered with your IoC container.
This enables steps to consume services registered as `scoped`.
3 changes: 2 additions & 1 deletion WorkflowCore.sln
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ReleaseNotes", "ReleaseNote
ReleaseNotes\1.6.9.md = ReleaseNotes\1.6.9.md
ReleaseNotes\1.7.0.md = ReleaseNotes\1.7.0.md
ReleaseNotes\1.8.0.md = ReleaseNotes\1.8.0.md
ReleaseNotes\1.8.1.md = ReleaseNotes\1.8.1.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 Expand Up @@ -130,7 +131,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WorkflowCore.Providers.Elas
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WorkflowCore.Tests.Elasticsearch", "test\WorkflowCore.Tests.Elasticsearch\WorkflowCore.Tests.Elasticsearch.csproj", "{44644716-0CE8-4837-B189-AB65AE2106AA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WorkflowCore.Tests.Redis", "test\WorkflowCore.Tests.Redis\WorkflowCore.Tests.Redis.csproj", "{78217204-B873-40B9-8875-E3925B2FBCEC}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WorkflowCore.Tests.Redis", "test\WorkflowCore.Tests.Redis\WorkflowCore.Tests.Redis.csproj", "{78217204-B873-40B9-8875-E3925B2FBCEC}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
6 changes: 3 additions & 3 deletions src/WorkflowCore/WorkflowCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<Description>Workflow Core is a light weight workflow engine targeting .NET Standard.</Description>
<Version>1.8.0</Version>
<AssemblyVersion>1.8.0.0</AssemblyVersion>
<FileVersion>1.8.0.0</FileVersion>
<Version>1.8.1</Version>
<AssemblyVersion>1.8.1.0</AssemblyVersion>
<FileVersion>1.8.1.0</FileVersion>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageIconUrl>https://github.com/danielgerlag/workflow-core/raw/master/src/logo.png</PackageIconUrl>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,16 +77,14 @@ public async Task<bool> AcquireLock(string Id, CancellationToken cancellationTok

public async Task ReleaseLock(string Id)
{
if (_mutex.WaitOne())
_mutex.WaitOne();
try
{
try
{
_localLocks.Remove(Id);
}
finally
{
_mutex.Set();
}
_localLocks.Remove(Id);
}
finally
{
_mutex.Set();
}

try
Expand Down

0 comments on commit 0bc1631

Please sign in to comment.