From 1964c7de44064686b88fb7825e013dbf9ace1d08 Mon Sep 17 00:00:00 2001 From: Joey Riches Date: Mon, 13 Jun 2022 16:41:59 +0100 Subject: [PATCH] Bump version to v1.5.2.0 --- Makefile | 2 +- builder/source/simple.go | 2 +- cli/version.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 156d257..c42685e 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION := 1.5.1.0 +VERSION := 1.5.2.0 BINNAME := solbuild .PHONY: build diff --git a/builder/source/simple.go b/builder/source/simple.go index 9aa7d80..9933667 100644 --- a/builder/source/simple.go +++ b/builder/source/simple.go @@ -148,7 +148,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.1.0")) + hnd.Setopt(curl.OPT_USERAGENT, fmt.Sprintf("solbuild 1.5.2.0")) pbar.Start() defer func() { diff --git a/cli/version.go b/cli/version.go index 8711095..aa04676 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.1.0" + SolbuildVersion = "1.5.2.0" ) func init() {