Skip to content

Commit 0c48d67

Browse files
committed
Version bump
1 parent b14a74c commit 0c48d67

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Hangfire.PostgreSql/Hangfire.PostgreSql.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
<PackageReleaseNotes>https://github.com/frankhommers/Hangfire.PostgreSql/releases</PackageReleaseNotes>
1515
<PackageProjectUrl>http://hmm.rs/Hangfire.PostgreSql</PackageProjectUrl>
1616
<PackageLicenseUrl></PackageLicenseUrl>
17-
<Version>1.8.5.1</Version>
18-
<FileVersion>1.8.5.1</FileVersion>
19-
<AssemblyVersion>1.8.5.1</AssemblyVersion>
17+
<Version>1.8.5.2</Version>
18+
<FileVersion>1.8.5.2</FileVersion>
19+
<AssemblyVersion>1.8.5.2</AssemblyVersion>
2020
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
2121
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
2222
<RepositoryUrl>https://github.com/frankhommers/Hangfire.PostgreSql</RepositoryUrl>

src/Hangfire.PostgreSql/Scripts/Install.v14.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ do
1313
$$
1414
DECLARE
1515
BEGIN
16-
EXECUTE('ALTER SEQUENCE ' || 'hangfire' || '.job_id_seq AS bigint MAXVALUE 9223372036854775807');
16+
EXECUTE('ALTER SEQUENCE ' || 'hangfire' || '.job_id_seq MAXVALUE 9223372036854775807');
1717
EXCEPTION WHEN syntax_error THEN
18-
EXECUTE('ALTER SEQUENCE ' || 'hangfire' || '.job_id_seq MAXVALUE 9223372036854775807');
18+
EXECUTE('ALTER SEQUENCE ' || 'hangfire' || '.job_id_seq AS bigint MAXVALUE 9223372036854775807');
1919
END;
2020
$$;
2121

0 commit comments

Comments
 (0)