Skip to content

Commit

Permalink
version: bump to v0.6.2-beta
Browse files Browse the repository at this point in the history
Now that lnd `v0.16.0-beta.rc` is out we can target the right lnd
version for `muSig2V100RC2Version`.
  • Loading branch information
positiveblue committed Mar 10, 2023
1 parent e366579 commit 00b0792
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions server.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,10 @@ var (
// muSig2V100RC2Version is the version of lnd that enabled the MuSig2
// v1.0.0-rc2 protocol in its MuSig2 RPC. We'll use this to decide what
// account version to default to.
// TODO(guggero): Update this to 0.16.0 when it's released.
muSig2V100RC2Version = &verrpc.Version{
AppMajor: 0,
AppMinor: 15,
AppPatch: 99,
AppMinor: 16,
AppPatch: 0,
BuildTags: []string{
"signrpc", "walletrpc", "chainrpc", "invoicesrpc",
},
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
const (
appMajor uint = 0
appMinor uint = 6
appPatch uint = 1
appPatch uint = 2

// appPreRelease MUST only contain characters from semanticAlphabet per
// the semantic versioning spec.
Expand Down

0 comments on commit 00b0792

Please sign in to comment.