Upcoming changes constitute breaking public API changes to the secp256k1 module, therefore, this follows the process for introducing major API breaks which consists of: - Bump the major version in the go.mod of the affected module if not already done since the last release tag - Add a replacement to the go.mod in the main module if not already done since the last release tag - Update all imports in the repo to use the new major version as necessary - Make necessary modifications to allow all other modules to use the new version in the same commit - Repeat the process for any other modules the require a new major as a result of consuming the new major(s)
20 lines
648 B
Modula-2
20 lines
648 B
Modula-2
module github.com/decred/dcrd/mining/v3
|
|
|
|
go 1.11
|
|
|
|
require (
|
|
github.com/decred/dcrd/blockchain/stake/v3 v3.0.0-20200104000002-54b67d3474fb
|
|
github.com/decred/dcrd/chaincfg/chainhash v1.0.2
|
|
github.com/decred/dcrd/dcrutil/v3 v3.0.0-20200104000002-54b67d3474fb
|
|
github.com/decred/dcrd/wire v1.3.0
|
|
)
|
|
|
|
replace (
|
|
github.com/decred/dcrd/blockchain/stake/v3 => ../blockchain/stake
|
|
github.com/decred/dcrd/blockchain/v3 => ../blockchain
|
|
github.com/decred/dcrd/chaincfg/v3 => ../chaincfg
|
|
github.com/decred/dcrd/dcrec/secp256k1/v3 => ../dcrec/secp256k1
|
|
github.com/decred/dcrd/dcrutil/v3 => ../dcrutil
|
|
github.com/decred/dcrd/txscript/v3 => ../txscript
|
|
)
|