diff --git a/appveyor.yml b/appveyor.yml index c0d167933..659d57469 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,7 +7,7 @@ # - Section names should be unique on each level. # Don't edit manually! Use `build.bat version` command instead! -version: 1.7.15-build-0{build} +version: 1.7.16-build-0{build} os: Visual Studio 2019 diff --git a/nuspecs/Hangfire.SqlServer.nuspec b/nuspecs/Hangfire.SqlServer.nuspec index 6cf1133e0..067aaa014 100644 --- a/nuspecs/Hangfire.SqlServer.nuspec +++ b/nuspecs/Hangfire.SqlServer.nuspec @@ -16,6 +16,9 @@ Please see https://docs.hangfire.io/en/latest/upgrade-guides/upgrading-to-hangfire-1.7.html to learn how to upgrade from 1.6.X. +1.7.16 +• Fixed – Blocking problems when using multiple storages with the same queue names in the same process (appeared in 1.7.9). + 1.7.15 • Fixed – Avoid deadlocks when using the `SetJobParameter` method without introducing issues for older schemas. • Fixed – Remove duplicate sorting in the `SqlServerMonitoringApi.GetJobs` method which is used by a lot of queries. diff --git a/nuspecs/Hangfire.nuspec b/nuspecs/Hangfire.nuspec index c125afd1b..d6f6d5272 100644 --- a/nuspecs/Hangfire.nuspec +++ b/nuspecs/Hangfire.nuspec @@ -21,6 +21,12 @@ https://www.hangfire.io/ Please see https://docs.hangfire.io/en/latest/upgrade-guides/upgrading-to-hangfire-1.7.html to learn how to upgrade from 1.6.X. +1.7.16 + +Hangfire.SqlServer + +• Fixed – Blocking problems when using multiple storages with the same queue names in the same process (appeared in 1.7.9). + 1.7.15 Hangfire.Core diff --git a/src/SharedAssemblyInfo.cs b/src/SharedAssemblyInfo.cs index c5fcd543f..337037278 100644 --- a/src/SharedAssemblyInfo.cs +++ b/src/SharedAssemblyInfo.cs @@ -9,4 +9,4 @@ [assembly: ComVisible(false)] // Don't edit manually! Use `build.bat version` command instead! -[assembly: AssemblyVersion("1.7.15")] +[assembly: AssemblyVersion("1.7.16")]