diff --git a/Makefile b/Makefile index 14dde45..156d257 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION := 1.5.0.0 +VERSION := 1.5.1.0 BINNAME := solbuild .PHONY: build diff --git a/builder/source/simple.go b/builder/source/simple.go index 7b43aef..1ccd059 100644 --- a/builder/source/simple.go +++ b/builder/source/simple.go @@ -141,7 +141,7 @@ func (s *SimpleSource) download(destination string) error { hnd.Setopt(curl.OPT_PROGRESSFUNCTION, progress) // Enforce internal 300 second connect timeout in libcurl hnd.Setopt(curl.OPT_CONNECTTIMEOUT, 0) - hnd.Setopt(curl.OPT_USERAGENT, fmt.Sprintf("solbuild 1.5.0.0")) + hnd.Setopt(curl.OPT_USERAGENT, fmt.Sprintf("solbuild 1.5.1.0")) pbar.Start() defer func() { diff --git a/cli/version.go b/cli/version.go index 5af20e6..8711095 100644 --- a/cli/version.go +++ b/cli/version.go @@ -23,7 +23,7 @@ import ( const ( // SolbuildVersion is the current public version of solbuild - SolbuildVersion = "1.5.0.0" + SolbuildVersion = "1.5.1.0" ) func init() {