Update supported Go versions and add 1.20 to CI

pull/1490/head
Jack Christensen 2023-02-04 07:01:03 -06:00
parent 32c29a6edd
commit 98543e0354
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
go-version: [1.19]
go-version: [1.19, 1.20]
pg-version: [11, 12, 13, 14, 15, cockroachdb]
include:
- pg-version: 11

View File

@ -88,7 +88,7 @@ See CONTRIBUTING.md for setup instructions.
## Supported Go and PostgreSQL Versions
pgx supports the same versions of Go and PostgreSQL that are supported by their respective teams. For [Go](https://golang.org/doc/devel/release.html#policy) that is the two most recent major releases and for [PostgreSQL](https://www.postgresql.org/support/versioning/) the major releases in the last 5 years. This means pgx supports Go 1.18 and higher and PostgreSQL 11 and higher. pgx also is tested against the latest version of [CockroachDB](https://www.cockroachlabs.com/product/).
pgx supports the same versions of Go and PostgreSQL that are supported by their respective teams. For [Go](https://golang.org/doc/devel/release.html#policy) that is the two most recent major releases and for [PostgreSQL](https://www.postgresql.org/support/versioning/) the major releases in the last 5 years. This means pgx supports Go 1.19 and higher and PostgreSQL 11 and higher. pgx also is tested against the latest version of [CockroachDB](https://www.cockroachlabs.com/product/).
## Version Policy
@ -149,5 +149,5 @@ Explicit data mapping and scanning library for Go structs and slices.
### [github.com/stephenafamo/scan](https://github.com/stephenafamo/scan)
Type safe and flexible package for scanning database data into Go types.
Type safe and flexible package for scanning database data into Go types.
Supports, structs, maps, slices and custom mapping functions.