-
Notifications
You must be signed in to change notification settings - Fork 296
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
release: Bump module versions and deps.
This bumps the various module versions as follows: - github.com/decred/dcrd/[email protected] - github.com/decred/dcrd/[email protected] - github.com/decred/dcrd/[email protected] - github.com/decred/dcrd/[email protected] - github.com/decred/dcrd/[email protected] - github.com/decred/dcrd/[email protected] - github.com/decred/dcrd/[email protected] - github.com/decred/dcrd/[email protected] - github.com/decred/dcrd/blockchain/[email protected] - github.com/decred/dcrd/[email protected] - github.com/decred/dcrd/[email protected] - github.com/decred/dcrd/[email protected] - github.com/decred/dcrd/[email protected] - github.com/decred/dcrd/[email protected] - github.com/decred/dcrd/[email protected] It also updates all of the dependencies for every module accordingly and adds a few missing overrides for transitive dependencies.
- Loading branch information
Showing
24 changed files
with
99 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,27 @@ | ||
module github.com/decred/dcrd/mining | ||
|
||
require ( | ||
github.com/decred/dcrd/blockchain v1.0.0 | ||
github.com/decred/dcrd/blockchain/stake v1.0.0 | ||
github.com/decred/dcrd/blockchain v1.0.1 | ||
github.com/decred/dcrd/blockchain/stake v1.0.1 | ||
github.com/decred/dcrd/chaincfg/chainhash v1.0.1 | ||
github.com/decred/dcrd/dcrjson v1.0.0 | ||
github.com/decred/dcrd/dcrutil v1.0.0 | ||
github.com/decred/dcrd/gcs v1.0.0 | ||
github.com/decred/dcrd/wire v1.0.1 | ||
github.com/decred/dcrd/dcrutil v1.1.1 | ||
github.com/decred/dcrd/gcs v1.0.1 | ||
github.com/decred/dcrd/wire v1.1.0 | ||
) | ||
|
||
replace ( | ||
github.com/decred/dcrd/blockchain => ../blockchain | ||
github.com/decred/dcrd/blockchain/stake => ../blockchain/stake | ||
github.com/decred/dcrd/chaincfg => ../chaincfg | ||
github.com/decred/dcrd/chaincfg/chainhash => ../chaincfg/chainhash | ||
github.com/decred/dcrd/database => ../database | ||
github.com/decred/dcrd/dcrec => ../dcrec | ||
github.com/decred/dcrd/dcrec/edwards => ../dcrec/edwards | ||
github.com/decred/dcrd/dcrec/secp256k1 => ../dcrec/secp256k1 | ||
github.com/decred/dcrd/dcrjson => ../dcrjson | ||
github.com/decred/dcrd/dcrutil => ../dcrutil | ||
github.com/decred/dcrd/gcs => ../gcs | ||
github.com/decred/dcrd/txscript => ../txscript | ||
github.com/decred/dcrd/wire => ../wire | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.