From 26890f2aaa9d873e27ad9f243c370400f2b91af2 Mon Sep 17 00:00:00 2001 From: Kristian Larsson Date: Thu, 22 Feb 2024 13:59:42 +0100 Subject: [PATCH] Release v0.20.1 Fix install of acton on in deb package. --- CHANGELOG.md | 5 +++++ Makefile | 1 + common.mk | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index edd393255..4cadc22e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog + +## [0.20.1] (2024-02-22) +### Fixed +- Install `acton` frontend in Debian package + ## [0.20.0] (2024-02-22) ### Added diff --git a/Makefile b/Makefile index 9644a21fd..96e68d7e9 100644 --- a/Makefile +++ b/Makefile @@ -552,6 +552,7 @@ release: distribution install: mkdir -p $(DESTDIR)/usr/bin $(DESTDIR)/usr/lib/acton cp -a dist/. $(DESTDIR)/usr/lib/acton/ + cd $(DESTDIR)/usr/bin && ln -s ../lib/acton/bin/acton cd $(DESTDIR)/usr/bin && ln -s ../lib/acton/bin/actonc cd $(DESTDIR)/usr/bin && ln -s ../lib/acton/bin/actondb cd $(DESTDIR)/usr/bin && ln -s ../lib/acton/bin/runacton diff --git a/common.mk b/common.mk index f808ea918..5f91cfcad 100644 --- a/common.mk +++ b/common.mk @@ -1 +1 @@ -VERSION=0.20.0 +VERSION=0.20.1