Skip to content

Commit

Permalink
Bump version to 1.4.4
Browse files Browse the repository at this point in the history
Signed-off-by: Peter O'Connor <[email protected]>
  • Loading branch information
Peter O'Connor committed Sep 25, 2018
1 parent bbc91ac commit a5b7be4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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.3
VERSION = 1.4.4

.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.3",
Version: "1.4.4",
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.3"))
hnd.Setopt(curl.OPT_USERAGENT, fmt.Sprintf("solbuild 1.4.4"))

pbar.Start()
defer func() {
Expand Down
4 changes: 2 additions & 2 deletions 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.3"
SolbuildVersion = "1.4.4"
)

var versionCmd = &cobra.Command{
Expand All @@ -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")
}

0 comments on commit a5b7be4

Please sign in to comment.