Patch of the coordinated framework release: einherjar modules move to v1.1.0 in lockstep, so db-postgres is bumped alongside the rest. - go.mod: contracts, core -> v1.1.0 (via go get + go mod tidy) No code or API changes. ModuleVersion() reports v1.1.0 automatically from build info once tagged. Badge bumped to v1.1.0. Reviewed-on: #1 Co-authored-by: Rene Nochebuena Guerrero <rene@nochebuena.dev> Co-committed-by: Rene Nochebuena Guerrero <rene@nochebuena.dev>
19 lines
522 B
AMPL
19 lines
522 B
AMPL
module code.nochebuena.dev/einherjar/db-postgres
|
|
|
|
go 1.26
|
|
|
|
require (
|
|
code.nochebuena.dev/einherjar/contracts v1.1.0
|
|
code.nochebuena.dev/einherjar/core v1.1.0
|
|
github.com/jackc/pgerrcode v0.0.0-20250907135507-afb5586c32a6
|
|
github.com/jackc/pgx/v5 v5.8.0
|
|
)
|
|
|
|
require (
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
|
|
github.com/jackc/puddle/v2 v2.2.2 // indirect
|
|
golang.org/x/sync v0.19.0 // indirect
|
|
golang.org/x/text v0.32.0 // indirect
|
|
)
|