build: bump version to v0.23.1

Includes:
  * A fix in the RPC server: https://github.com/btcsuite/btcd/pull/1862
  * Rolling back a breaking change fromteh PoV of the rpcclient: https://github.com/btcsuite/btcd/pull/1844
This commit is contained in:
Olaoluwa Osuntokun 2022-06-06 16:14:13 -07:00
parent 8fc2d707f6
commit e6f6ba4593
No known key found for this signature in database
GPG Key ID: 3BBD59E99B280306
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
const (
appMajor uint = 0
appMinor uint = 23
appPatch uint = 0
appPatch uint = 1
// appPreRelease MUST only contain characters from semanticAlphabet
// per the semantic versioning spec.

View File

@ -18,7 +18,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
const (
appMajor uint = 0
appMinor uint = 23
appPatch uint = 0
appPatch uint = 1
// appPreRelease MUST only contain characters from semanticAlphabet
// per the semantic versioning spec.