Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Easkfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
;; -*- mode: eask; lexical-binding: t -*-

(package "magit-standup"
"0.3.0"
"Collect recent git commits for standup notes")
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

lint: .deps
eask lint package
eask lint checkdoc

test: .compile
eask test buttercup
Expand All @@ -24,7 +25,7 @@ release: lint test
git switch -c release/v$(VERSION)
sed 's/^;; Version: .*/;; Version: $(VERSION)/' magit-standup.el > magit-standup.el.new
mv magit-standup.el.new magit-standup.el
sed '2s/"[0-9][0-9.]*"/"$(VERSION)"/' Easkfile > Easkfile.new
sed 's/^\( *\)"[0-9][0-9.]*"$$/\1"$(VERSION)"/' Easkfile > Easkfile.new
mv Easkfile.new Easkfile
@grep -qx ";; Version: $(VERSION)" magit-standup.el
@grep -qx ' "$(VERSION)"' Easkfile
Expand Down
Loading