Skip to content

Upgrade versions #68

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Mar 2, 2022
10 changes: 5 additions & 5 deletions config.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,10 @@ type PostgresVersion string

// Predefined supported Postgres versions.
const (
V14 = PostgresVersion("14.1.0")
V13 = PostgresVersion("13.5.0")
V12 = PostgresVersion("12.9.0")
V11 = PostgresVersion("11.14.0")
V10 = PostgresVersion("10.19.0")
V14 = PostgresVersion("14.2.0")
V13 = PostgresVersion("13.6.0")
V12 = PostgresVersion("12.10.0")
V11 = PostgresVersion("11.15.0")
V10 = PostgresVersion("10.20.0")
V9 = PostgresVersion("9.6.24")
)