From 7760b390d86768c28048b46b4248f210c3507fa8 Mon Sep 17 00:00:00 2001 From: Ivan Ilves Date: Mon, 18 Sep 2017 22:58:24 +0200 Subject: [PATCH 1/2] README.md: Add information about binary releases --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index b6c3f34..2ed1ba6 100644 --- a/README.md +++ b/README.md @@ -39,8 +39,7 @@ My CI server is connected over crappy Internet link and pulling images in advanc There is also special `UNKNOWN` state, which means `lstags` failed to detect image state for some reason. ## Install: Binaries -* [GNU/Linux](https://www.dropbox.com/s/xtgzs0dijj42qjo/lstags.linux?dl=1) -* [MacOSX](https://www.dropbox.com/s/9zqv3y1k7wvj731/lstags.darwin?dl=1) +https://github.com/ivanilves/lstags/releases ## Install: From source ``` From 5c0f0ea41b911a73a2488937c90bd5d3593d2604 Mon Sep 17 00:00:00 2001 From: Ivan Ilves Date: Mon, 18 Sep 2017 23:00:23 +0200 Subject: [PATCH 2/2] Releases: Remove bold from commit detail links :pig: --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9db51fd..77bed44 100644 --- a/Makefile +++ b/Makefile @@ -52,7 +52,7 @@ changelog: GITHUB_COMMIT_URL:=https://github.com/ivanilves/lstags/commit changelog: @echo "## Changelog" @git log --oneline v${LAST_RELEASE}..HEAD | egrep -v "^[0-9a-f]{7,} (Merge |Ignore:)" | \ - sed -r "s|^([0-9a-f]{7,}) (.*)|* **[\`\1\`](${GITHUB_COMMIT_URL}/\1)** \2|" + sed -r "s|^([0-9a-f]{7,}) (.*)|* [\`\1\`](${GITHUB_COMMIT_URL}/\1) \2|" release: clean release: LAST_RELEASE:=$(shell git tag | sed 's/^v//' | sort -n | tail -n1)