From 9a109a3897a59fa565d1414ef73f8ec92832913a Mon Sep 17 00:00:00 2001 From: Sergey Odinokov Date: Fri, 20 Nov 2020 21:08:19 +0500 Subject: [PATCH] Bump version to 1.7.18 and add release notes --- appveyor.yml | 2 +- nuspecs/Hangfire.SqlServer.nuspec | 4 ++++ nuspecs/Hangfire.nuspec | 7 +++++++ src/SharedAssemblyInfo.cs | 2 +- 4 files changed, 13 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index eddf3e0aa..2e0dd366c 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.17-build-0{build} +version: 1.7.18-build-0{build} os: Visual Studio 2019 diff --git a/nuspecs/Hangfire.SqlServer.nuspec b/nuspecs/Hangfire.SqlServer.nuspec index 2b8d7a8ec..f3fa35c67 100644 --- a/nuspecs/Hangfire.SqlServer.nuspec +++ b/nuspecs/Hangfire.SqlServer.nuspec @@ -16,6 +16,10 @@ 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.18 +• Added – `SqlServerStorageOptions.DeleteExpiredBatchSize` option to remove more expired records in a single pass. +• Fixed – Don't throw from `SqlServerStorage.ToString` method when using custom factory or existing connection. + 1.7.17 • Fixed – SqlException "Incorrect syntax near 'throw'" after upgrading to 1.7.15 when using SQL Server 2008 or 2008R2. diff --git a/nuspecs/Hangfire.nuspec b/nuspecs/Hangfire.nuspec index 920441f26..58a533dfd 100644 --- a/nuspecs/Hangfire.nuspec +++ b/nuspecs/Hangfire.nuspec @@ -21,6 +21,13 @@ 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.18 + +Hangfire.SqlServer + +• Added – `SqlServerStorageOptions.DeleteExpiredBatchSize` option to remove more expired records in a single pass. +• Fixed – Don't throw from `SqlServerStorage.ToString` method when using custom factory or existing connection. + 1.7.17 Hangfire.SqlServer diff --git a/src/SharedAssemblyInfo.cs b/src/SharedAssemblyInfo.cs index 84620b5e2..49ec2c841 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.17")] +[assembly: AssemblyVersion("1.7.18")]