diff --git a/go.mod b/go.mod index e47091a1..622b308c 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,7 @@ go 1.14 require ( github.com/jessevdk/go-flags v1.4.0 - github.com/kaspanet/kaspad v0.8.3 + github.com/kaspanet/kaspad v0.8.4 github.com/miekg/dns v1.1.25 github.com/pkg/errors v0.9.1 google.golang.org/grpc v1.33.1 diff --git a/version/version.go b/version/version.go index 69088608..718ffe58 100644 --- a/version/version.go +++ b/version/version.go @@ -11,7 +11,7 @@ const validCharacters = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrs const ( appMajor uint = 0 appMinor uint = 8 - appPatch uint = 3 + appPatch uint = 4 ) // appBuild is defined as a variable so it can be overridden during the build