Skip to content

Commit

Permalink
Bump version to 1.4.2
Browse files Browse the repository at this point in the history
Signed-off-by: Ikey Doherty <[email protected]>
  • Loading branch information
ikeydoherty committed Nov 21, 2017
1 parent ef832d1 commit d07c724
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PROJECT_ROOT := src/
VERSION = 1.4.1
VERSION = 1.4.2

.DEFAULT_GOAL := all

Expand Down
2 changes: 1 addition & 1 deletion src/builder/pkg.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ var (
// system.
IndexPackage = Package{
Name: "index",
Version: "1.4.1",
Version: "1.4.2",
Type: PackageTypeIndex,
Release: 1,
Path: "",
Expand Down
2 changes: 1 addition & 1 deletion src/builder/source/simple.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.1"))
hnd.Setopt(curl.OPT_USERAGENT, fmt.Sprintf("solbuild 1.4.2"))

pbar.Start()
defer func() {
Expand Down
2 changes: 1 addition & 1 deletion src/solbuild/cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (

const (
// SolbuildVersion is the current public version of solbuild
SolbuildVersion = "1.4.1"
SolbuildVersion = "1.4.2"
)

var versionCmd = &cobra.Command{
Expand Down

0 comments on commit d07c724

Please sign in to comment.