From 7b6ec2364e75c3887bae57612ef6d5618ba76121 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Wed, 7 Jun 2023 14:27:45 -0500 Subject: [PATCH] blockchain/standalone: Prepare v2.2.0. This updates the module dependencies, the copyright year in the files modified since the previous release, and serves as a base for blockchain/standalone/v2.2.0. The updated direct dependencies in this commit are as follows: - github.com/decred/dcrd/chaincfg/chainhash@1.0.4 - github.com/decred/dcrd/wire@v1.6.0 The updated indirect dependencies in this commit are as follows: - github.com/decred/crypto/blake256@v1.0.1 - github.com/klauspost/cpuid/v2@v2.0.9 - lukechampine.com/blake3@v1.2.1 The full list of updated direct and indirect dependencies since the previous blockchain/standalone/v2.1.0 release are the same as above. Finally, all modules in the repository are tidied to ensure they are updated to use the latest versions hoisted forward as a result. --- blockchain/standalone/go.mod | 10 +++++++--- blockchain/standalone/go.sum | 16 ++++++++++------ blockchain/standalone/pow_test.go | 2 +- go.mod | 2 +- 4 files changed, 19 insertions(+), 11 deletions(-) diff --git a/blockchain/standalone/go.mod b/blockchain/standalone/go.mod index 3f6d30c0e9..57365025b9 100644 --- a/blockchain/standalone/go.mod +++ b/blockchain/standalone/go.mod @@ -3,8 +3,12 @@ module github.com/decred/dcrd/blockchain/standalone/v2 go 1.17 require ( - github.com/decred/dcrd/chaincfg/chainhash v1.0.2 - github.com/decred/dcrd/wire v1.4.0 + github.com/decred/dcrd/chaincfg/chainhash v1.0.4 + github.com/decred/dcrd/wire v1.6.0 ) -require github.com/decred/dcrd/crypto/blake256 v1.0.0 // indirect +require ( + github.com/decred/dcrd/crypto/blake256 v1.0.1 // indirect + github.com/klauspost/cpuid/v2 v2.0.9 // indirect + lukechampine.com/blake3 v1.2.1 // indirect +) diff --git a/blockchain/standalone/go.sum b/blockchain/standalone/go.sum index d90765a1d3..55eb525a5a 100644 --- a/blockchain/standalone/go.sum +++ b/blockchain/standalone/go.sum @@ -1,8 +1,12 @@ 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/chaincfg/chainhash v1.0.2 h1:rt5Vlq/jM3ZawwiacWjPa+smINyLRN07EO0cNBV6DGU= -github.com/decred/dcrd/chaincfg/chainhash v1.0.2/go.mod h1:BpbrGgrPTr3YJYRN3Bm+D9NuaFd+zGyNeIKgrhCXK60= -github.com/decred/dcrd/crypto/blake256 v1.0.0 h1:/8DMNYp9SGi5f0w7uCm6d6M4OU2rGFK09Y2A4Xv7EE0= -github.com/decred/dcrd/crypto/blake256 v1.0.0/go.mod h1:sQl2p6Y26YV+ZOcSTP6thNdn47hh8kt6rqSlvmrXFAc= -github.com/decred/dcrd/wire v1.4.0 h1:KmSo6eTQIvhXS0fLBQ/l7hG7QLcSJQKSwSyzSqJYDk0= -github.com/decred/dcrd/wire v1.4.0/go.mod h1:WxC/0K+cCAnBh+SKsRjIX9YPgvrjhmE+6pZlel1G7Ro= +github.com/decred/dcrd/chaincfg/chainhash v1.0.4 h1:zRCv6tdncLfLTKYqu7hrXvs7hW+8FO/NvwoFvGsrluU= +github.com/decred/dcrd/chaincfg/chainhash v1.0.4/go.mod h1:hA86XxlBWwHivMvxzXTSD0ZCG/LoYsFdWnCekkTMCqY= +github.com/decred/dcrd/crypto/blake256 v1.0.1 h1:7PltbUIQB7u/FfZ39+DGa/ShuMyJ5ilcvdfma9wOH6Y= +github.com/decred/dcrd/crypto/blake256 v1.0.1/go.mod h1:2OfgNZ5wDpcsFmHmCK5gZTPcCXqlm2ArzUIkw9czNJo= +github.com/decred/dcrd/wire v1.6.0 h1:YOGwPHk4nzGr6OIwUGb8crJYWDiVLpuMxfDBCCF7s/o= +github.com/decred/dcrd/wire v1.6.0/go.mod h1:XQ8Xv/pN/3xaDcb7sH8FBLS9cdgVctT7HpBKKGsIACk= +github.com/klauspost/cpuid/v2 v2.0.9 h1:lgaqFMSdTdQYdZ04uHyN2d/eKdOMyi2YLSvlQIBFYa4= +github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= +lukechampine.com/blake3 v1.2.1 h1:YuqqRuaqsGV71BV/nm9xlI0MKUv4QC54jQnBChWbGnI= +lukechampine.com/blake3 v1.2.1/go.mod h1:0OFRp7fBtAylGVCO40o87sbupkyIGgbpv1+M1k1LM6k= diff --git a/blockchain/standalone/pow_test.go b/blockchain/standalone/pow_test.go index e8b3c0f630..ecc49ca959 100644 --- a/blockchain/standalone/pow_test.go +++ b/blockchain/standalone/pow_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2019 The Decred developers +// Copyright (c) 2019-2023 The Decred developers // Use of this source code is governed by an ISC // license that can be found in the LICENSE file. diff --git a/go.mod b/go.mod index d8fa07c986..3a7fb6aad7 100644 --- a/go.mod +++ b/go.mod @@ -29,7 +29,7 @@ require ( github.com/decred/dcrd/rpc/jsonrpc/types/v4 v4.0.0 github.com/decred/dcrd/rpcclient/v8 v8.0.0 github.com/decred/dcrd/txscript/v4 v4.0.0 - github.com/decred/dcrd/wire v1.5.0 + github.com/decred/dcrd/wire v1.6.0 github.com/decred/dcrtest/dcrdtest v0.0.0-20221125134442-85f922c0880e github.com/decred/go-socks v1.1.0 github.com/decred/slog v1.2.0