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)
19 lines
599 B
Go
19 lines
599 B
Go
// Copyright (c) 2019-2020 The Decred developers
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// This file exists to prevent go mod tidy from removing requires for newer
|
|
// module versions that are not yet fully integrated and to allow them to be
|
|
// automatically discovered by the testing infrastructure.
|
|
//
|
|
// It is excluded from the build to avoid including unused modules in the final
|
|
// binary.
|
|
|
|
package main
|
|
|
|
import (
|
|
_ "github.com/decred/dcrd/bech32"
|
|
_ "github.com/decred/dcrd/dcrec/secp256k1/v3"
|
|
_ "github.com/decred/dcrd/fees/v2"
|
|
)
|