Skip to content

Commit

Permalink
Dropped support for Go < 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed May 5, 2024
1 parent 8419673 commit 34ed1e1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ jobs:
strategy:
fail-fast: false
matrix:
# panic with Ent 0.12.4 and Go 1.22
# fixed in Ent 0.13.0, but requires Go 1.21+
go: ["1.21", "1.20"]
go: ["1.22", "1.21"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 0.1.2 (unreleased)
## 0.2.0 (unreleased)

- Improved performance of serialization
- Dropped support for Go < 1.21

## 0.1.1 (2023-04-20)

Expand Down
14 changes: 7 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module github.com/pgvector/pgvector-go

go 1.20
go 1.21

require (
entgo.io/ent v0.12.4
entgo.io/ent v0.13.1
github.com/ankane/disco-go v0.1.0
github.com/go-pg/pg/v10 v10.11.0
github.com/jackc/pgx/v5 v5.4.3
Expand All @@ -17,13 +17,13 @@ require (
)

require (
ariga.io/atlas v0.14.1-0.20230918065911-83ad451a4935 // indirect
ariga.io/atlas v0.19.1-0.20240203083654-5948b60a8e43 // indirect
github.com/agext/levenshtein v1.2.1 // indirect
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
github.com/go-openapi/inflect v0.19.0 // indirect
github.com/go-pg/zerochecker v0.2.0 // indirect
github.com/google/go-cmp v0.5.6 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/hashicorp/hcl/v2 v2.13.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
Expand All @@ -38,8 +38,8 @@ require (
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
github.com/zclconf/go-cty v1.8.0 // indirect
golang.org/x/crypto v0.14.0 // indirect
golang.org/x/mod v0.10.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/mod v0.15.0 // indirect
golang.org/x/sys v0.17.0 // indirect
golang.org/x/text v0.13.0 // indirect
mellium.im/sasl v0.3.1 // indirect
)

0 comments on commit 34ed1e1

Please sign in to comment.