fix(sql-migrate): remove local replace directives from go.mod

Replace directives pointing to local paths prevent `go install` from
working. Use published module versions (sqlmigrate v1.0.2, shmigrate
v1.0.2) so users can install with:

    go install github.com/therootcompany/golib/cmd/sql-migrate/v2@latest
This commit is contained in:
AJ ONeal 2026-04-09 16:51:56 -06:00
parent dda4491c94
commit 5b3a4be3c2
No known key found for this signature in database
2 changed files with 5 additions and 6 deletions

View File

@ -4,10 +4,5 @@ go 1.26.1
require (
github.com/therootcompany/golib/database/sqlmigrate v1.0.2
github.com/therootcompany/golib/database/sqlmigrate/shmigrate v0.0.0
)
replace (
github.com/therootcompany/golib/database/sqlmigrate => ../../database/sqlmigrate
github.com/therootcompany/golib/database/sqlmigrate/shmigrate => ../../database/sqlmigrate/shmigrate
github.com/therootcompany/golib/database/sqlmigrate/shmigrate v1.0.2
)

View File

@ -0,0 +1,4 @@
github.com/therootcompany/golib/database/sqlmigrate v1.0.2 h1:hcmhYyUFVj/GqyChP+0Ry2WZCHnoruFMbsy+2KVzsfA=
github.com/therootcompany/golib/database/sqlmigrate v1.0.2/go.mod h1:7PQUjwT78Hx+SftcIKI2PH4zSFlrSO0V9h618PJqC38=
github.com/therootcompany/golib/database/sqlmigrate/shmigrate v1.0.2 h1:jW7m/V3UZAbJjSxOOd1R6fxbFuBY07NX2Oa/GybKuio=
github.com/therootcompany/golib/database/sqlmigrate/shmigrate v1.0.2/go.mod h1:dD64mkK0Dkl9OkKbHvbK0s4nbEE/W2wsWthGCIdxIlg=