Skip to content

Commit

Permalink
Bump to 1.4.5.1
Browse files Browse the repository at this point in the history
Ensure we're generating xz compressed tarballs
  • Loading branch information
JoshStrobl committed Sep 10, 2019
1 parent ba5a9da commit cf6e139
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PROJECT_ROOT := src/
VERSION = 1.4.5
VERSION = 1.4.5.1

.DEFAULT_GOAL := all

Expand Down Expand Up @@ -58,6 +58,7 @@ gen_docs:

# See: https://github.com/meitar/git-archive-all.sh/blob/master/git-archive-all.sh
release: ensure_modules
git-archive-all --format tar.gz --prefix solbuild-$(VERSION)/ --verbose -t HEAD solbuild-$(VERSION).tar.gz
git-archive-all --format tar --prefix solbuild-$(VERSION)/ --verbose -t HEAD solbuild-$(VERSION).tar
xz -9 "solbuild-${VERSION}.tar"

all: $(BINS)
Binary file added solbuild-1.4.5.1.tar.xz
Binary file not shown.
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.5",
Version: "1.4.5.1",
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.5"))
hnd.Setopt(curl.OPT_USERAGENT, fmt.Sprintf("solbuild 1.4.5.1"))

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.5"
SolbuildVersion = "1.4.5.1"
)

var versionCmd = &cobra.Command{
Expand Down

0 comments on commit cf6e139

Please sign in to comment.