Skip to content

Commit

Permalink
Merge pull request #61 from gliderlabs/master
Browse files Browse the repository at this point in the history
Release 0.7.1
  • Loading branch information
josegonzalez authored Oct 28, 2021
2 parents 7a0409c + ce484cf commit 1ec3006
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
9 changes: 5 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down

0 comments on commit 1ec3006

Please sign in to comment.