Skip to content

Commit

Permalink
Drop support for postgres 9.4 and add support for postgres 12
Browse files Browse the repository at this point in the history
  • Loading branch information
dhui committed Feb 16, 2020
1 parent 67536b7 commit 9dcc6f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/postgres/postgres_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ var (
opts = dktest.Options{PortRequired: true, ReadyFunc: isReady}
// Supported versions: https://www.postgresql.org/support/versioning/
specs = []dktesting.ContainerSpec{
{ImageName: "postgres:9.4", Options: opts},
{ImageName: "postgres:9.5", Options: opts},
{ImageName: "postgres:9.6", Options: opts},
{ImageName: "postgres:10", Options: opts},
{ImageName: "postgres:11", Options: opts},
{ImageName: "postgres:12", Options: opts},
}
)

Expand Down

0 comments on commit 9dcc6f0

Please sign in to comment.