Begin module dev cycles.
Upcoming changes constitute breaking public API changes to both the client and types modules, therefore this bumps the version numbers of both modules and adds local replacements to go.mod files such that the new versions can be used before they are publicly tagged.
This commit is contained in:
parent
1720fd2062
commit
ecf2baa193
@ -1,4 +1,4 @@
|
||||
// Copyright (c) 2022-2023 The Decred developers
|
||||
// Copyright (c) 2022-2024 The Decred developers
|
||||
// Use of this source code is governed by an ISC
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
@ -18,7 +18,7 @@ import (
|
||||
|
||||
"github.com/decred/dcrd/txscript/v4/stdaddr"
|
||||
"github.com/decred/slog"
|
||||
"github.com/decred/vspd/types/v2"
|
||||
"github.com/decred/vspd/types/v3"
|
||||
)
|
||||
|
||||
type Client struct {
|
||||
|
||||
@ -14,7 +14,7 @@ import (
|
||||
"testing"
|
||||
|
||||
"github.com/decred/slog"
|
||||
"github.com/decred/vspd/types/v2"
|
||||
"github.com/decred/vspd/types/v3"
|
||||
)
|
||||
|
||||
// TestErrorDetails ensures errors returned by client.do contain adequate
|
||||
|
||||
@ -1,13 +1,15 @@
|
||||
module github.com/decred/vspd/client/v3
|
||||
module github.com/decred/vspd/client/v4
|
||||
|
||||
go 1.19
|
||||
|
||||
require (
|
||||
github.com/decred/dcrd/txscript/v4 v4.1.0
|
||||
github.com/decred/slog v1.2.0
|
||||
github.com/decred/vspd/types/v2 v2.1.0
|
||||
github.com/decred/vspd/types/v3 v3.0.0
|
||||
)
|
||||
|
||||
replace github.com/decred/vspd/types/v3 => ../types
|
||||
|
||||
require (
|
||||
github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412 // indirect
|
||||
github.com/dchest/siphash v1.2.3 // indirect
|
||||
|
||||
@ -24,8 +24,6 @@ github.com/decred/dcrd/wire v1.6.0 h1:YOGwPHk4nzGr6OIwUGb8crJYWDiVLpuMxfDBCCF7s/
|
||||
github.com/decred/dcrd/wire v1.6.0/go.mod h1:XQ8Xv/pN/3xaDcb7sH8FBLS9cdgVctT7HpBKKGsIACk=
|
||||
github.com/decred/slog v1.2.0 h1:soHAxV52B54Di3WtKLfPum9OFfWqwtf/ygf9njdfnPM=
|
||||
github.com/decred/slog v1.2.0/go.mod h1:kVXlGnt6DHy2fV5OjSeuvCJ0OmlmTF6LFpEPMu/fOY0=
|
||||
github.com/decred/vspd/types/v2 v2.1.0 h1:cUVlmHPeLVsksPRnr2WHsmC2t1Skl6g1WH0HmpcPS7w=
|
||||
github.com/decred/vspd/types/v2 v2.1.0/go.mod h1:2xnNqedkt9GuL+pK8uIzDxqYxFlwLRflYFJH64b76n0=
|
||||
github.com/klauspost/cpuid/v2 v2.2.5 h1:0E5MSMDEoAulmXNFquVs//DdoomxaoTY1kUhbc/qbZg=
|
||||
github.com/klauspost/cpuid/v2 v2.2.5/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws=
|
||||
golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
|
||||
@ -14,10 +14,10 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/decred/slog"
|
||||
"github.com/decred/vspd/client/v3"
|
||||
"github.com/decred/vspd/client/v4"
|
||||
"github.com/decred/vspd/internal/config"
|
||||
"github.com/decred/vspd/internal/signal"
|
||||
"github.com/decred/vspd/types/v2"
|
||||
"github.com/decred/vspd/types/v3"
|
||||
)
|
||||
|
||||
const (
|
||||
|
||||
9
go.mod
9
go.mod
@ -16,8 +16,8 @@ require (
|
||||
github.com/decred/dcrd/txscript/v4 v4.1.0
|
||||
github.com/decred/dcrd/wire v1.6.0
|
||||
github.com/decred/slog v1.2.0
|
||||
github.com/decred/vspd/client/v3 v3.0.0
|
||||
github.com/decred/vspd/types/v2 v2.1.0
|
||||
github.com/decred/vspd/client/v4 v4.0.0
|
||||
github.com/decred/vspd/types/v3 v3.0.0
|
||||
github.com/dustin/go-humanize v1.0.1
|
||||
github.com/gin-gonic/gin v1.10.0
|
||||
github.com/gorilla/sessions v1.2.2
|
||||
@ -28,6 +28,11 @@ require (
|
||||
go.etcd.io/bbolt v1.3.9
|
||||
)
|
||||
|
||||
replace (
|
||||
github.com/decred/vspd/client/v4 => ./client
|
||||
github.com/decred/vspd/types/v3 => ./types
|
||||
)
|
||||
|
||||
require (
|
||||
github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412 // indirect
|
||||
github.com/bytedance/sonic v1.11.6 // indirect
|
||||
|
||||
4
go.sum
4
go.sum
@ -54,10 +54,6 @@ github.com/decred/dcrd/wire v1.6.0 h1:YOGwPHk4nzGr6OIwUGb8crJYWDiVLpuMxfDBCCF7s/
|
||||
github.com/decred/dcrd/wire v1.6.0/go.mod h1:XQ8Xv/pN/3xaDcb7sH8FBLS9cdgVctT7HpBKKGsIACk=
|
||||
github.com/decred/slog v1.2.0 h1:soHAxV52B54Di3WtKLfPum9OFfWqwtf/ygf9njdfnPM=
|
||||
github.com/decred/slog v1.2.0/go.mod h1:kVXlGnt6DHy2fV5OjSeuvCJ0OmlmTF6LFpEPMu/fOY0=
|
||||
github.com/decred/vspd/client/v3 v3.0.0 h1:4gAGDTeIU0r4quCxmV5Ez7T2J+P+OLPSibkCF+/Yb6w=
|
||||
github.com/decred/vspd/client/v3 v3.0.0/go.mod h1:5pfPvIa6V38AmophMrKUCl3KMpEIxcltWtgL2R+wsW8=
|
||||
github.com/decred/vspd/types/v2 v2.1.0 h1:cUVlmHPeLVsksPRnr2WHsmC2t1Skl6g1WH0HmpcPS7w=
|
||||
github.com/decred/vspd/types/v2 v2.1.0/go.mod h1:2xnNqedkt9GuL+pK8uIzDxqYxFlwLRflYFJH64b76n0=
|
||||
github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkpeCY=
|
||||
github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto=
|
||||
github.com/gabriel-vasile/mimetype v1.4.3 h1:in2uUcidCuFcDKtdcBxlR0rJ1+fsokWf+uqxgUFjbI0=
|
||||
|
||||
@ -12,7 +12,7 @@ import (
|
||||
"github.com/decred/dcrd/dcrutil/v4"
|
||||
"github.com/decred/vspd/database"
|
||||
"github.com/decred/vspd/rpc"
|
||||
"github.com/decred/vspd/types/v2"
|
||||
"github.com/decred/vspd/types/v3"
|
||||
"github.com/gin-gonic/gin"
|
||||
"github.com/gin-gonic/gin/binding"
|
||||
)
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
// Copyright (c) 2020-2023 The Decred developers
|
||||
// Copyright (c) 2020-2024 The Decred developers
|
||||
// Use of this source code is governed by an ISC
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
@ -15,7 +15,7 @@ import (
|
||||
|
||||
"github.com/decred/dcrd/blockchain/stake/v5"
|
||||
"github.com/decred/vspd/rpc"
|
||||
"github.com/decred/vspd/types/v2"
|
||||
"github.com/decred/vspd/types/v3"
|
||||
"github.com/gin-gonic/gin"
|
||||
"github.com/gin-gonic/gin/binding"
|
||||
"github.com/gorilla/sessions"
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
// Copyright (c) 2021-2023 The Decred developers
|
||||
// Copyright (c) 2021-2024 The Decred developers
|
||||
// Use of this source code is governed by an ISC
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
@ -15,7 +15,7 @@ import (
|
||||
"github.com/decred/dcrd/txscript/v4/stdaddr"
|
||||
"github.com/decred/vspd/database"
|
||||
"github.com/decred/vspd/rpc"
|
||||
"github.com/decred/vspd/types/v2"
|
||||
"github.com/decred/vspd/types/v3"
|
||||
"github.com/gin-gonic/gin"
|
||||
"github.com/gin-gonic/gin/binding"
|
||||
)
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
// Copyright (c) 2021-2023 The Decred developers
|
||||
// Copyright (c) 2021-2024 The Decred developers
|
||||
// Use of this source code is governed by an ISC
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
@ -11,7 +11,7 @@ import (
|
||||
"github.com/decred/dcrd/txscript/v4/stdaddr"
|
||||
"github.com/decred/vspd/database"
|
||||
"github.com/decred/vspd/rpc"
|
||||
"github.com/decred/vspd/types/v2"
|
||||
"github.com/decred/vspd/types/v3"
|
||||
"github.com/gin-gonic/gin"
|
||||
"github.com/gin-gonic/gin/binding"
|
||||
)
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
// Copyright (c) 2021-2023 The Decred developers
|
||||
// Copyright (c) 2021-2024 The Decred developers
|
||||
// Use of this source code is governed by an ISC
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
@ -22,7 +22,7 @@ import (
|
||||
"github.com/decred/slog"
|
||||
"github.com/decred/vspd/database"
|
||||
"github.com/decred/vspd/internal/config"
|
||||
"github.com/decred/vspd/types/v2"
|
||||
"github.com/decred/vspd/types/v3"
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
// Copyright (c) 2020-2023 The Decred developers
|
||||
// Copyright (c) 2020-2024 The Decred developers
|
||||
// Use of this source code is governed by an ISC
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
@ -11,7 +11,7 @@ import (
|
||||
|
||||
"github.com/decred/vspd/database"
|
||||
"github.com/decred/vspd/rpc"
|
||||
"github.com/decred/vspd/types/v2"
|
||||
"github.com/decred/vspd/types/v3"
|
||||
"github.com/gin-gonic/gin"
|
||||
"github.com/gin-gonic/gin/binding"
|
||||
)
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
// Copyright (c) 2020-2022 The Decred developers
|
||||
// Copyright (c) 2020-2024 The Decred developers
|
||||
// Use of this source code is governed by an ISC
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
@ -8,7 +8,7 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/decred/vspd/database"
|
||||
"github.com/decred/vspd/types/v2"
|
||||
"github.com/decred/vspd/types/v3"
|
||||
"github.com/gin-gonic/gin"
|
||||
"github.com/gin-gonic/gin/binding"
|
||||
)
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
// Copyright (c) 2020-2023 The Decred developers
|
||||
// Copyright (c) 2020-2024 The Decred developers
|
||||
// Use of this source code is governed by an ISC
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
@ -8,7 +8,7 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/decred/vspd/internal/version"
|
||||
"github.com/decred/vspd/types/v2"
|
||||
"github.com/decred/vspd/types/v3"
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
// Copyright (c) 2020-2023 The Decred developers
|
||||
// Copyright (c) 2020-2024 The Decred developers
|
||||
// Use of this source code is governed by an ISC
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
@ -21,7 +21,7 @@ import (
|
||||
"github.com/decred/vspd/database"
|
||||
"github.com/decred/vspd/internal/config"
|
||||
"github.com/decred/vspd/rpc"
|
||||
"github.com/decred/vspd/types/v2"
|
||||
"github.com/decred/vspd/types/v3"
|
||||
"github.com/dustin/go-humanize"
|
||||
"github.com/gin-gonic/gin"
|
||||
"github.com/gorilla/sessions"
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
module github.com/decred/vspd/types/v2
|
||||
module github.com/decred/vspd/types/v3
|
||||
|
||||
go 1.19
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
// Copyright (c) 2020-2023 The Decred developers
|
||||
// Copyright (c) 2020-2024 The Decred developers
|
||||
// Use of this source code is governed by an ISC
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user