File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ type Config struct {
27
27
28
28
// DefaultConfig provides a default set of configuration to be used "as is" or modified using the provided builders.
29
29
// The following can be assumed as defaults:
30
- // Version: 14
30
+ // Version: 15
31
31
// Port: 5432
32
32
// Database: postgres
33
33
// Username: postgres
@@ -146,6 +146,7 @@ type PostgresVersion string
146
146
147
147
// Predefined supported Postgres versions.
148
148
const (
149
+ V16 = PostgresVersion ("16.2.0" )
149
150
V15 = PostgresVersion ("15.3.0" )
150
151
V14 = PostgresVersion ("14.8.0" )
151
152
V13 = PostgresVersion ("13.11.0" )
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ import (
14
14
15
15
func Test_AllMajorVersions (t * testing.T ) {
16
16
allVersions := []embeddedpostgres.PostgresVersion {
17
+ embeddedpostgres .V16 ,
17
18
embeddedpostgres .V15 ,
18
19
embeddedpostgres .V14 ,
19
20
}
You can’t perform that action at this time.
0 commit comments