diff --git a/Makefile b/Makefile index 0d71519..2a71be4 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ PROJECT_ROOT := src/ -VERSION = 1.4.3 +VERSION = 1.4.4 .DEFAULT_GOAL := all diff --git a/src/builder/pkg.go b/src/builder/pkg.go index 90768cb..6696266 100644 --- a/src/builder/pkg.go +++ b/src/builder/pkg.go @@ -46,7 +46,7 @@ var ( // system. IndexPackage = Package{ Name: "index", - Version: "1.4.3", + Version: "1.4.4", Type: PackageTypeIndex, Release: 1, Path: "", diff --git a/src/builder/source/simple.go b/src/builder/source/simple.go index aa22c98..d95f59b 100644 --- a/src/builder/source/simple.go +++ b/src/builder/source/simple.go @@ -142,7 +142,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.4.3")) + hnd.Setopt(curl.OPT_USERAGENT, fmt.Sprintf("solbuild 1.4.4")) pbar.Start() defer func() { diff --git a/src/solbuild/cmd/version.go b/src/solbuild/cmd/version.go index 30a7cf2..5e0d00b 100644 --- a/src/solbuild/cmd/version.go +++ b/src/solbuild/cmd/version.go @@ -23,7 +23,7 @@ import ( const ( // SolbuildVersion is the current public version of solbuild - SolbuildVersion = "1.4.3" + SolbuildVersion = "1.4.4" ) var versionCmd = &cobra.Command{ @@ -38,6 +38,6 @@ func init() { } func printVersion(cmd *cobra.Command, args []string) { - fmt.Printf("solbuild version %v\n\nCopyright © 2016-2017 Solus Project\n", SolbuildVersion) + fmt.Printf("solbuild version %v\n\nCopyright © 2016-2018 Solus Project\n", SolbuildVersion) fmt.Printf("Licensed under the Apache License, Version 2.0\n") }