We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5602a5 commit ab6f1afCopy full SHA for ab6f1af
config.go
@@ -115,6 +115,7 @@ type PostgresVersion string
115
116
// Predefined supported Postgres versions.
117
const (
118
+ V14 = PostgresVersion("14.1.0")
119
V13 = PostgresVersion("13.4.0")
120
V12 = PostgresVersion("12.8.0")
121
V11 = PostgresVersion("11.13.0")
platform-test/platform_test.go
@@ -13,6 +13,7 @@ import (
13
14
func Test_AllMajorVersions(t *testing.T) {
15
allVersions := []embeddedpostgres.PostgresVersion{
16
+ embeddedpostgres.V14,
17
embeddedpostgres.V13,
18
embeddedpostgres.V12,
19
embeddedpostgres.V11,
0 commit comments