diff --git a/CHANGELOG.md b/CHANGELOG.md index 45b0835..5d3c5ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Change Log All notable changes to this project will be documented in this file. +## [v0.7.1](https://github.com/gliderlabs/registrator/compare/v0.7.0...v0.7.1) - 2020-10-28 + +### Fixed + +- #60 @josegonzalez Ensure binary name in package is sigil + ## [v0.7.0](https://github.com/gliderlabs/registrator/compare/v0.6.0...v0.7.0) - 2020-10-28 ### Fixed diff --git a/Makefile b/Makefile index d14aa8c..8e4c1ce 100644 --- a/Makefile +++ b/Makefile @@ -5,9 +5,10 @@ MAINTAINER_NAME = Jose Diaz-Gonzalez REPOSITORY = sigil HARDWARE = $(shell uname -m) SYSTEM_NAME = $(shell uname -s | tr '[:upper:]' '[:lower:]') -BASE_VERSION ?= 0.7.0 +BASE_VERSION ?= 0.7.1 IMAGE_NAME ?= $(MAINTAINER)/$(REPOSITORY) PACKAGECLOUD_REPOSITORY ?= dokku/dokku-betafish +BINARY_NAME = sigil ifeq ($(CI_BRANCH),release) VERSION ?= $(BASE_VERSION) @@ -101,7 +102,7 @@ build/deb/$(NAME)_$(VERSION)_amd64.deb: build/linux/$(NAME)-amd64 --vendor "" \ --version $(VERSION) \ --verbose \ - build/linux/$(NAME)-amd64=/usr/bin/$(NAME) \ + build/linux/$(NAME)-amd64=/usr/bin/$(BINARY_NAME) \ LICENSE=/usr/share/doc/$(NAME)/copyright build/deb/$(NAME)_$(VERSION)_armhf.deb: build/linux/$(NAME)-armhf @@ -121,7 +122,7 @@ build/deb/$(NAME)_$(VERSION)_armhf.deb: build/linux/$(NAME)-armhf --vendor "" \ --version $(VERSION) \ --verbose \ - build/linux/$(NAME)-armhf=/usr/bin/$(NAME) \ + build/linux/$(NAME)-armhf=/usr/bin/$(BINARY_NAME) \ LICENSE=/usr/share/doc/$(NAME)/copyright build/rpm/$(NAME)-$(VERSION)-1.x86_64.rpm: build/linux/$(NAME)-amd64 @@ -142,7 +143,7 @@ build/rpm/$(NAME)-$(VERSION)-1.x86_64.rpm: build/linux/$(NAME)-amd64 --vendor "" \ --version $(VERSION) \ --verbose \ - build/linux/$(NAME)-amd64=/usr/bin/$(NAME) \ + build/linux/$(NAME)-amd64=/usr/bin/$(BINARY_NAME) \ LICENSE=/usr/share/doc/$(NAME)/copyright clean: diff --git a/README.md b/README.md index e580bc8..b0e99e7 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ for any text processing. ## Getting Sigil ```shell -curl -L "https://github.com/gliderlabs/sigil/releases/download/v0.7.0/gliderlabs-sigil_0.7.0_$(uname -sm|tr \ _).tgz" \ +curl -L "https://github.com/gliderlabs/sigil/releases/download/v0.7.1/gliderlabs-sigil_0.7.1_$(uname -sm|tr \ _).tgz" \ | tar -zxC /usr/local/bin ```