diff --git a/changelog.txt b/changelog.txt index 935439d42..7385f203c 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,8 @@ +Kaspad v0.12.3 - 2022-06-29 +=========================== + +* Fixes a few bugs which can lead to node crashes or out-of-memory errors + Kaspad v0.12.2 - 2022-06-17 =========================== diff --git a/infrastructure/config/config.go b/infrastructure/config/config.go index 9b6322e71..f5e280e3c 100644 --- a/infrastructure/config/config.go +++ b/infrastructure/config/config.go @@ -98,7 +98,7 @@ type Flags struct { RPCMaxWebsockets int `long:"rpcmaxwebsockets" description:"Max number of RPC websocket connections"` RPCMaxConcurrentReqs int `long:"rpcmaxconcurrentreqs" description:"Max number of concurrent RPC requests that may be processed concurrently"` DisableRPC bool `long:"norpc" description:"Disable built-in RPC server"` - SafeRPC bool `long:"saferpc" description:"Disable RPC commands which effect the state of the node"` + SafeRPC bool `long:"saferpc" description:"Disable RPC commands which affect the state of the node"` DisableDNSSeed bool `long:"nodnsseed" description:"Disable DNS seeding for peers"` DNSSeed string `long:"dnsseed" description:"Override DNS seeds with specified hostname (Only 1 hostname allowed)"` GRPCSeed string `long:"grpcseed" description:"Hostname of gRPC server for seeding peers"` diff --git a/version/version.go b/version/version.go index 1df34d5d6..6a434d25d 100644 --- a/version/version.go +++ b/version/version.go @@ -11,7 +11,7 @@ const validCharacters = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrs const ( appMajor uint = 0 appMinor uint = 12 - appPatch uint = 2 + appPatch uint = 3 ) // appBuild is defined as a variable so it can be overridden during the build