diff --git a/address/go.mod b/address/go.mod index b7ac07d9..cf4905b7 100644 --- a/address/go.mod +++ b/address/go.mod @@ -3,7 +3,7 @@ module github.com/btcsuite/btcd/address/v2 go 1.25 require ( - github.com/btcsuite/btcd/btcec/v2 v2.3.2 + github.com/btcsuite/btcd/btcec/v2 v2.5.0 github.com/btcsuite/btcd/chaincfg/v2 v2.0.0 github.com/btcsuite/btcd/wire/v2 v2.0.0 github.com/stretchr/testify v1.10.0 @@ -18,15 +18,3 @@ require ( golang.org/x/sys v0.35.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) - -// TODO(guggero): Remove this as soon as we have a tagged version of btcec. -replace github.com/btcsuite/btcd/btcec/v2 => ../btcec - -// TODO(guggero): Remove this as soon as we have a tagged version of chaincfg. -replace github.com/btcsuite/btcd/chaincfg/v2 => ../chaincfg - -// TODO(guggero): Remove this as soon as we have a tagged version of chainhash. -replace github.com/btcsuite/btcd/chainhash/v2 => ../chainhash - -// TODO(guggero): Remove this as soon as we have a tagged version of wire. -replace github.com/btcsuite/btcd/wire/v2 => ../wire diff --git a/address/go.sum b/address/go.sum index 78a19a3d..b533f4a4 100644 --- a/address/go.sum +++ b/address/go.sum @@ -1,3 +1,11 @@ +github.com/btcsuite/btcd/btcec/v2 v2.5.0 h1:KioMXOWa76b86sTZZOmbzv/ldaQCmB8KFAyn5PbB8E8= +github.com/btcsuite/btcd/btcec/v2 v2.5.0/go.mod h1:+K/MYXcLBtHEQjRbjHuJChuybk4LCgjdjgRwil+e+Kk= +github.com/btcsuite/btcd/chaincfg/v2 v2.0.0 h1:M/RTtXfXA9odC1RUEOyZFXj/NXKVHPYZXVjb60xTOok= +github.com/btcsuite/btcd/chaincfg/v2 v2.0.0/go.mod h1:rHgHIXYYfn70m25a+BJ9f9z7VZAsTiDQGB2XYaippGQ= +github.com/btcsuite/btcd/chainhash/v2 v2.0.0 h1:PMLlSloHJuEeB80XG9EjpXWNEKAZAMLl6YHZ6YsEuoA= +github.com/btcsuite/btcd/chainhash/v2 v2.0.0/go.mod h1:mKxcZ7oGTXE7IRV+sS9hP4EVBwc/SzfNR+52IsOP9j8= +github.com/btcsuite/btcd/wire/v2 v2.0.0 h1:mYSKzZZ0a1sK+aMhXzfDSVsSzRkWkU3x2U04TFRS2z8= +github.com/btcsuite/btcd/wire/v2 v2.0.0/go.mod h1:bGxkPkk8IiDvUo1D96wE03llBIk7p2MdWYRyAQwLmqM= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.0 h1:NMZiJj8QnKe1LgsbDayM4UoHwbvwDRwnI3hwNaAHRnc= diff --git a/btcec/go.mod b/btcec/go.mod index 7d244014..d7a109d4 100644 --- a/btcec/go.mod +++ b/btcec/go.mod @@ -14,6 +14,3 @@ require ( github.com/pmezard/go-difflib v1.0.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) - -// TODO(guggero): Remove once we have a tagged version of the chainhash package. -replace github.com/btcsuite/btcd/chainhash/v2 => ../chainhash diff --git a/btcec/go.sum b/btcec/go.sum index 39677bec..b72e0bb2 100644 --- a/btcec/go.sum +++ b/btcec/go.sum @@ -1,3 +1,5 @@ +github.com/btcsuite/btcd/chainhash/v2 v2.0.0 h1:PMLlSloHJuEeB80XG9EjpXWNEKAZAMLl6YHZ6YsEuoA= +github.com/btcsuite/btcd/chainhash/v2 v2.0.0/go.mod h1:mKxcZ7oGTXE7IRV+sS9hP4EVBwc/SzfNR+52IsOP9j8= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= diff --git a/btcutil/go.mod b/btcutil/go.mod index 5113d657..0f9756ef 100644 --- a/btcutil/go.mod +++ b/btcutil/go.mod @@ -5,7 +5,7 @@ go 1.25 require ( github.com/aead/siphash v1.0.1 github.com/btcsuite/btcd/address/v2 v2.0.0 - github.com/btcsuite/btcd/btcec/v2 v2.4.0 + github.com/btcsuite/btcd/btcec/v2 v2.5.0 github.com/btcsuite/btcd/chaincfg/v2 v2.0.0 github.com/btcsuite/btcd/chainhash/v2 v2.0.0 github.com/btcsuite/btcd/txscript/v2 v2.0.0 @@ -22,21 +22,3 @@ require ( golang.org/x/crypto v0.40.0 // indirect golang.org/x/sys v0.35.0 // indirect ) - -// TODO(guggero): Remove this as soon as we have a tagged version of address. -replace github.com/btcsuite/btcd/address/v2 => ../address - -// TODO(guggero): Remove this as soon as we have a tagged version of btcec. -replace github.com/btcsuite/btcd/btcec/v2 => ../btcec - -// TODO(guggero): Remove this as soon as we have a tagged version of chaincfg. -replace github.com/btcsuite/btcd/chaincfg/v2 => ../chaincfg - -// TODO(guggero): Remove this as soon as we have a tagged version of chainhash. -replace github.com/btcsuite/btcd/chainhash/v2 => ../chainhash - -// TODO(guggero): Remove this as soon as we have a tagged version of txscript. -replace github.com/btcsuite/btcd/txscript/v2 => ../txscript - -// TODO(guggero): Remove this as soon as we have a tagged version of wire. -replace github.com/btcsuite/btcd/wire/v2 => ../wire diff --git a/btcutil/go.sum b/btcutil/go.sum index c74a145c..f98ff058 100644 --- a/btcutil/go.sum +++ b/btcutil/go.sum @@ -1,5 +1,17 @@ github.com/aead/siphash v1.0.1 h1:FwHfE/T45KPKYuuSAKyyvE+oPWcaQ+CUmFW0bPlM+kg= github.com/aead/siphash v1.0.1/go.mod h1:Nywa3cDsYNNK3gaciGTWPwHt0wlpNV15vwmswBAUSII= +github.com/btcsuite/btcd/address/v2 v2.0.0 h1:UVu8Hal6Siu4XastFe+JX5JkeBYONbDUIY5E+SVTs6I= +github.com/btcsuite/btcd/address/v2 v2.0.0/go.mod h1:htJK1AtaeK3bKNfZY63ep2oN8LbrI6qvmPGe1vekb3I= +github.com/btcsuite/btcd/btcec/v2 v2.5.0 h1:KioMXOWa76b86sTZZOmbzv/ldaQCmB8KFAyn5PbB8E8= +github.com/btcsuite/btcd/btcec/v2 v2.5.0/go.mod h1:+K/MYXcLBtHEQjRbjHuJChuybk4LCgjdjgRwil+e+Kk= +github.com/btcsuite/btcd/chaincfg/v2 v2.0.0 h1:M/RTtXfXA9odC1RUEOyZFXj/NXKVHPYZXVjb60xTOok= +github.com/btcsuite/btcd/chaincfg/v2 v2.0.0/go.mod h1:rHgHIXYYfn70m25a+BJ9f9z7VZAsTiDQGB2XYaippGQ= +github.com/btcsuite/btcd/chainhash/v2 v2.0.0 h1:PMLlSloHJuEeB80XG9EjpXWNEKAZAMLl6YHZ6YsEuoA= +github.com/btcsuite/btcd/chainhash/v2 v2.0.0/go.mod h1:mKxcZ7oGTXE7IRV+sS9hP4EVBwc/SzfNR+52IsOP9j8= +github.com/btcsuite/btcd/txscript/v2 v2.0.0 h1:pEmmHaC8eRx6KSB63zSVJD7qrit9/c9cLSrw++XrYP8= +github.com/btcsuite/btcd/txscript/v2 v2.0.0/go.mod h1:pZXabc11Xr9nz/18kXY3yErdAajYc3gi28Zqb3KqlFo= +github.com/btcsuite/btcd/wire/v2 v2.0.0 h1:mYSKzZZ0a1sK+aMhXzfDSVsSzRkWkU3x2U04TFRS2z8= +github.com/btcsuite/btcd/wire/v2 v2.0.0/go.mod h1:bGxkPkk8IiDvUo1D96wE03llBIk7p2MdWYRyAQwLmqM= github.com/btcsuite/btclog v1.0.0 h1:sEkpKJMmfGiyZjADwEIgB1NSwMyfdD1FB8v6+w1T0Ns= github.com/btcsuite/btclog v1.0.0/go.mod h1:w7xnGOhwT3lmrS4H3b/D1XAXxvh+tbhUm8xeHN2y3TQ= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= diff --git a/chaincfg/go.mod b/chaincfg/go.mod index 7f6219c0..3713cabc 100644 --- a/chaincfg/go.mod +++ b/chaincfg/go.mod @@ -1,6 +1,6 @@ module github.com/btcsuite/btcd/chaincfg/v2 -go 1.23.2 +go 1.25 require ( github.com/btcsuite/btcd/chainhash/v2 v2.0.0 @@ -15,9 +15,3 @@ require ( golang.org/x/sys v0.35.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) - -// TODO(guggero): Remove once we have a tagged version of the chainhash package. -replace github.com/btcsuite/btcd/chainhash/v2 => ../chainhash - -// TODO(guggero): Remove once we have a tagged version of the wire package. -replace github.com/btcsuite/btcd/wire/v2 => ../wire diff --git a/chaincfg/go.sum b/chaincfg/go.sum index 76acb2a5..fc60eebe 100644 --- a/chaincfg/go.sum +++ b/chaincfg/go.sum @@ -1,3 +1,7 @@ +github.com/btcsuite/btcd/chainhash/v2 v2.0.0 h1:PMLlSloHJuEeB80XG9EjpXWNEKAZAMLl6YHZ6YsEuoA= +github.com/btcsuite/btcd/chainhash/v2 v2.0.0/go.mod h1:mKxcZ7oGTXE7IRV+sS9hP4EVBwc/SzfNR+52IsOP9j8= +github.com/btcsuite/btcd/wire/v2 v2.0.0 h1:mYSKzZZ0a1sK+aMhXzfDSVsSzRkWkU3x2U04TFRS2z8= +github.com/btcsuite/btcd/wire/v2 v2.0.0/go.mod h1:bGxkPkk8IiDvUo1D96wE03llBIk7p2MdWYRyAQwLmqM= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= diff --git a/chainhash/go.mod b/chainhash/go.mod index 1c443589..4a8d2d28 100644 --- a/chainhash/go.mod +++ b/chainhash/go.mod @@ -1,3 +1,3 @@ module github.com/btcsuite/btcd/chainhash/v2 -go 1.23.2 +go 1.25 diff --git a/go.mod b/go.mod index dc587fc2..5a5b9fd6 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,7 @@ go 1.25 require ( github.com/btcsuite/btcd/address/v2 v2.0.0 - github.com/btcsuite/btcd/btcec/v2 v2.4.0 + github.com/btcsuite/btcd/btcec/v2 v2.5.0 github.com/btcsuite/btcd/btcutil/v2 v2.0.0 github.com/btcsuite/btcd/chaincfg/v2 v2.0.0 github.com/btcsuite/btcd/chainhash/v2 v2.0.0 @@ -39,27 +39,6 @@ require ( gopkg.in/yaml.v3 v3.0.1 // indirect ) -// TODO(guggero): Remove this as soon as we have a tagged version of address. -replace github.com/btcsuite/btcd/address/v2 => ./address - -// TODO(guggero): Remove this as soon as we have a tagged version of btcec. -replace github.com/btcsuite/btcd/btcec/v2 => ./btcec - -// TODO(guggero): Remove this as soon as we have a tagged version of btcutil. -replace github.com/btcsuite/btcd/btcutil/v2 => ./btcutil - -// TODO(guggero): Remove this as soon as we have a tagged version of chaincfg. -replace github.com/btcsuite/btcd/chaincfg/v2 => ./chaincfg - -// TODO(guggero): Remove this as soon as we have a tagged version of chainhash. -replace github.com/btcsuite/btcd/chainhash/v2 => ./chainhash - -// TODO(guggero): Remove this as soon as we have a tagged version of txscript. -replace github.com/btcsuite/btcd/txscript/v2 => ./txscript - -// TODO(guggero): Remove this as soon as we have a tagged version of wire. -replace github.com/btcsuite/btcd/wire/v2 => ./wire - // The retract statements below fixes an accidental push of the tags of a btcd // fork. retract ( diff --git a/go.sum b/go.sum index 44cb2b07..dd7efb50 100644 --- a/go.sum +++ b/go.sum @@ -1,7 +1,21 @@ github.com/aead/siphash v1.0.1 h1:FwHfE/T45KPKYuuSAKyyvE+oPWcaQ+CUmFW0bPlM+kg= github.com/aead/siphash v1.0.1/go.mod h1:Nywa3cDsYNNK3gaciGTWPwHt0wlpNV15vwmswBAUSII= +github.com/btcsuite/btcd/address/v2 v2.0.0 h1:UVu8Hal6Siu4XastFe+JX5JkeBYONbDUIY5E+SVTs6I= +github.com/btcsuite/btcd/address/v2 v2.0.0/go.mod h1:htJK1AtaeK3bKNfZY63ep2oN8LbrI6qvmPGe1vekb3I= +github.com/btcsuite/btcd/btcec/v2 v2.5.0 h1:KioMXOWa76b86sTZZOmbzv/ldaQCmB8KFAyn5PbB8E8= +github.com/btcsuite/btcd/btcec/v2 v2.5.0/go.mod h1:+K/MYXcLBtHEQjRbjHuJChuybk4LCgjdjgRwil+e+Kk= +github.com/btcsuite/btcd/btcutil/v2 v2.0.0 h1:77pgf/4tjWaSBLdos8yiWVWL3rSphxWNqkLwcyONExA= +github.com/btcsuite/btcd/btcutil/v2 v2.0.0/go.mod h1:ZF8MMdsx1JGgvHJUanxbigekSO+8bN/ai34LBk/lg3c= +github.com/btcsuite/btcd/chaincfg/v2 v2.0.0 h1:M/RTtXfXA9odC1RUEOyZFXj/NXKVHPYZXVjb60xTOok= +github.com/btcsuite/btcd/chaincfg/v2 v2.0.0/go.mod h1:rHgHIXYYfn70m25a+BJ9f9z7VZAsTiDQGB2XYaippGQ= +github.com/btcsuite/btcd/chainhash/v2 v2.0.0 h1:PMLlSloHJuEeB80XG9EjpXWNEKAZAMLl6YHZ6YsEuoA= +github.com/btcsuite/btcd/chainhash/v2 v2.0.0/go.mod h1:mKxcZ7oGTXE7IRV+sS9hP4EVBwc/SzfNR+52IsOP9j8= +github.com/btcsuite/btcd/txscript/v2 v2.0.0 h1:pEmmHaC8eRx6KSB63zSVJD7qrit9/c9cLSrw++XrYP8= +github.com/btcsuite/btcd/txscript/v2 v2.0.0/go.mod h1:pZXabc11Xr9nz/18kXY3yErdAajYc3gi28Zqb3KqlFo= github.com/btcsuite/btcd/v2transport v1.0.1 h1:pIyyyBCPwd087K3Wdb/9tIvUubAQdzTJghjPgzTQVsE= github.com/btcsuite/btcd/v2transport v1.0.1/go.mod h1:N6H0HGSElVVJKntzaYHYVbW71DtWDLMw2yhwVRO3ZOE= +github.com/btcsuite/btcd/wire/v2 v2.0.0 h1:mYSKzZZ0a1sK+aMhXzfDSVsSzRkWkU3x2U04TFRS2z8= +github.com/btcsuite/btcd/wire/v2 v2.0.0/go.mod h1:bGxkPkk8IiDvUo1D96wE03llBIk7p2MdWYRyAQwLmqM= github.com/btcsuite/btclog v1.0.0 h1:sEkpKJMmfGiyZjADwEIgB1NSwMyfdD1FB8v6+w1T0Ns= github.com/btcsuite/btclog v1.0.0/go.mod h1:w7xnGOhwT3lmrS4H3b/D1XAXxvh+tbhUm8xeHN2y3TQ= github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd h1:R/opQEbFEy9JGkIguV40SvRY1uliPX8ifOvi6ICsFCw= diff --git a/psbt/go.mod b/psbt/go.mod index f1e1cce5..7e2d1491 100644 --- a/psbt/go.mod +++ b/psbt/go.mod @@ -4,7 +4,7 @@ go 1.25 require ( github.com/btcsuite/btcd/address/v2 v2.0.0 - github.com/btcsuite/btcd/btcec/v2 v2.4.0 + github.com/btcsuite/btcd/btcec/v2 v2.5.0 github.com/btcsuite/btcd/btcutil/v2 v2.0.0 github.com/btcsuite/btcd/chainhash/v2 v2.0.0 github.com/btcsuite/btcd/txscript/v2 v2.0.0 @@ -24,24 +24,3 @@ require ( golang.org/x/sys v0.35.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) - -// TODO(guggero): Remove this as soon as we have a tagged version of btcec. -replace github.com/btcsuite/btcd/btcec/v2 => ../btcec - -// TODO(guggero): Remove this as soon as we have a tagged version of btcutil. -replace github.com/btcsuite/btcd/btcutil/v2 => ../btcutil - -// TODO(guggero): Remove this as soon as we have a tagged version of chaincfg. -replace github.com/btcsuite/btcd/chaincfg/v2 => ../chaincfg - -// TODO(guggero): Remove this as soon as we have a tagged version of chainhash. -replace github.com/btcsuite/btcd/chainhash/v2 => ../chainhash - -// TODO(guggero): Remove this as soon as we have a tagged version of address. -replace github.com/btcsuite/btcd/address/v2 => ../address - -// TODO(guggero): Remove this as soon as we have a tagged version of txscript. -replace github.com/btcsuite/btcd/txscript/v2 => ../txscript - -// TODO(guggero): Remove this as soon as we have a tagged version of wire. -replace github.com/btcsuite/btcd/wire/v2 => ../wire diff --git a/psbt/go.sum b/psbt/go.sum index 6efde215..2297f4e4 100644 --- a/psbt/go.sum +++ b/psbt/go.sum @@ -1,3 +1,17 @@ +github.com/btcsuite/btcd/address/v2 v2.0.0 h1:UVu8Hal6Siu4XastFe+JX5JkeBYONbDUIY5E+SVTs6I= +github.com/btcsuite/btcd/address/v2 v2.0.0/go.mod h1:htJK1AtaeK3bKNfZY63ep2oN8LbrI6qvmPGe1vekb3I= +github.com/btcsuite/btcd/btcec/v2 v2.5.0 h1:KioMXOWa76b86sTZZOmbzv/ldaQCmB8KFAyn5PbB8E8= +github.com/btcsuite/btcd/btcec/v2 v2.5.0/go.mod h1:+K/MYXcLBtHEQjRbjHuJChuybk4LCgjdjgRwil+e+Kk= +github.com/btcsuite/btcd/btcutil/v2 v2.0.0 h1:77pgf/4tjWaSBLdos8yiWVWL3rSphxWNqkLwcyONExA= +github.com/btcsuite/btcd/btcutil/v2 v2.0.0/go.mod h1:ZF8MMdsx1JGgvHJUanxbigekSO+8bN/ai34LBk/lg3c= +github.com/btcsuite/btcd/chaincfg/v2 v2.0.0 h1:M/RTtXfXA9odC1RUEOyZFXj/NXKVHPYZXVjb60xTOok= +github.com/btcsuite/btcd/chaincfg/v2 v2.0.0/go.mod h1:rHgHIXYYfn70m25a+BJ9f9z7VZAsTiDQGB2XYaippGQ= +github.com/btcsuite/btcd/chainhash/v2 v2.0.0 h1:PMLlSloHJuEeB80XG9EjpXWNEKAZAMLl6YHZ6YsEuoA= +github.com/btcsuite/btcd/chainhash/v2 v2.0.0/go.mod h1:mKxcZ7oGTXE7IRV+sS9hP4EVBwc/SzfNR+52IsOP9j8= +github.com/btcsuite/btcd/txscript/v2 v2.0.0 h1:pEmmHaC8eRx6KSB63zSVJD7qrit9/c9cLSrw++XrYP8= +github.com/btcsuite/btcd/txscript/v2 v2.0.0/go.mod h1:pZXabc11Xr9nz/18kXY3yErdAajYc3gi28Zqb3KqlFo= +github.com/btcsuite/btcd/wire/v2 v2.0.0 h1:mYSKzZZ0a1sK+aMhXzfDSVsSzRkWkU3x2U04TFRS2z8= +github.com/btcsuite/btcd/wire/v2 v2.0.0/go.mod h1:bGxkPkk8IiDvUo1D96wE03llBIk7p2MdWYRyAQwLmqM= github.com/btcsuite/btclog v1.0.0 h1:sEkpKJMmfGiyZjADwEIgB1NSwMyfdD1FB8v6+w1T0Ns= github.com/btcsuite/btclog v1.0.0/go.mod h1:w7xnGOhwT3lmrS4H3b/D1XAXxvh+tbhUm8xeHN2y3TQ= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= diff --git a/txscript/go.mod b/txscript/go.mod index 3af52cd9..6f454ce6 100644 --- a/txscript/go.mod +++ b/txscript/go.mod @@ -4,7 +4,7 @@ go 1.25 require ( github.com/btcsuite/btcd/address/v2 v2.0.0 - github.com/btcsuite/btcd/btcec/v2 v2.3.2 + github.com/btcsuite/btcd/btcec/v2 v2.5.0 github.com/btcsuite/btcd/chaincfg/v2 v2.0.0 github.com/btcsuite/btcd/chainhash/v2 v2.0.0 github.com/btcsuite/btcd/wire/v2 v2.0.0 @@ -21,18 +21,3 @@ require ( golang.org/x/sys v0.35.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) - -// TODO(guggero): Remove this as soon as we have a tagged version of address. -replace github.com/btcsuite/btcd/address/v2 => ../address - -// TODO(guggero): Remove this as soon as we have a tagged version of btcec. -replace github.com/btcsuite/btcd/btcec/v2 => ../btcec - -// TODO(guggero): Remove this as soon as we have a tagged version of chaincfg. -replace github.com/btcsuite/btcd/chaincfg/v2 => ../chaincfg - -// TODO(guggero): Remove this as soon as we have a tagged version of chainhash. -replace github.com/btcsuite/btcd/chainhash/v2 => ../chainhash - -// TODO(guggero): Remove this as soon as we have a tagged version of wire. -replace github.com/btcsuite/btcd/wire/v2 => ../wire diff --git a/txscript/go.sum b/txscript/go.sum index f8b25f4c..5b9d7312 100644 --- a/txscript/go.sum +++ b/txscript/go.sum @@ -1,3 +1,13 @@ +github.com/btcsuite/btcd/address/v2 v2.0.0 h1:UVu8Hal6Siu4XastFe+JX5JkeBYONbDUIY5E+SVTs6I= +github.com/btcsuite/btcd/address/v2 v2.0.0/go.mod h1:htJK1AtaeK3bKNfZY63ep2oN8LbrI6qvmPGe1vekb3I= +github.com/btcsuite/btcd/btcec/v2 v2.5.0 h1:KioMXOWa76b86sTZZOmbzv/ldaQCmB8KFAyn5PbB8E8= +github.com/btcsuite/btcd/btcec/v2 v2.5.0/go.mod h1:+K/MYXcLBtHEQjRbjHuJChuybk4LCgjdjgRwil+e+Kk= +github.com/btcsuite/btcd/chaincfg/v2 v2.0.0 h1:M/RTtXfXA9odC1RUEOyZFXj/NXKVHPYZXVjb60xTOok= +github.com/btcsuite/btcd/chaincfg/v2 v2.0.0/go.mod h1:rHgHIXYYfn70m25a+BJ9f9z7VZAsTiDQGB2XYaippGQ= +github.com/btcsuite/btcd/chainhash/v2 v2.0.0 h1:PMLlSloHJuEeB80XG9EjpXWNEKAZAMLl6YHZ6YsEuoA= +github.com/btcsuite/btcd/chainhash/v2 v2.0.0/go.mod h1:mKxcZ7oGTXE7IRV+sS9hP4EVBwc/SzfNR+52IsOP9j8= +github.com/btcsuite/btcd/wire/v2 v2.0.0 h1:mYSKzZZ0a1sK+aMhXzfDSVsSzRkWkU3x2U04TFRS2z8= +github.com/btcsuite/btcd/wire/v2 v2.0.0/go.mod h1:bGxkPkk8IiDvUo1D96wE03llBIk7p2MdWYRyAQwLmqM= github.com/btcsuite/btclog v1.0.0 h1:sEkpKJMmfGiyZjADwEIgB1NSwMyfdD1FB8v6+w1T0Ns= github.com/btcsuite/btclog v1.0.0/go.mod h1:w7xnGOhwT3lmrS4H3b/D1XAXxvh+tbhUm8xeHN2y3TQ= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= diff --git a/version.go b/version.go index b19ea56e..76b2cdfc 100644 --- a/version.go +++ b/version.go @@ -17,12 +17,12 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr // versioning 2.0.0 spec (http://semver.org/). const ( appMajor uint = 0 - appMinor uint = 25 + appMinor uint = 26 appPatch uint = 0 // appPreRelease MUST only contain characters from semanticAlphabet // per the semantic versioning spec. - appPreRelease = "beta" + appPreRelease = "beta.rc1" ) // appBuild is defined as a variable so it can be overridden during the build diff --git a/wire/go.mod b/wire/go.mod index 4d011b58..44f7ff0d 100644 --- a/wire/go.mod +++ b/wire/go.mod @@ -1,6 +1,6 @@ module github.com/btcsuite/btcd/wire/v2 -go 1.23.2 +go 1.25 require ( github.com/btcsuite/btcd/chainhash/v2 v2.0.0 @@ -14,6 +14,3 @@ require ( golang.org/x/sys v0.35.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) - -// TODO(guggero): Remove once we have a tagged version of the chainhash package. -replace github.com/btcsuite/btcd/chainhash/v2 => ../chainhash diff --git a/wire/go.sum b/wire/go.sum index 76acb2a5..630942a0 100644 --- a/wire/go.sum +++ b/wire/go.sum @@ -1,3 +1,5 @@ +github.com/btcsuite/btcd/chainhash/v2 v2.0.0 h1:PMLlSloHJuEeB80XG9EjpXWNEKAZAMLl6YHZ6YsEuoA= +github.com/btcsuite/btcd/chainhash/v2 v2.0.0/go.mod h1:mKxcZ7oGTXE7IRV+sS9hP4EVBwc/SzfNR+52IsOP9j8= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=