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