add tool to ease making commits

This commit is contained in:
Benjamin Sergeant 2020-07-24 11:53:09 -07:00
parent e78019dad6
commit 78a42f61bd
2 changed files with 6 additions and 0 deletions

View File

@ -241,6 +241,9 @@ doc:
change: format change: format
vim ixwebsocket/IXWebSocketVersion.h docs/CHANGELOG.md vim ixwebsocket/IXWebSocketVersion.h docs/CHANGELOG.md
commit:
git commit -am "`sh tools/extract_latest_change.sh`"
.PHONY: test .PHONY: test
.PHONY: build .PHONY: build
.PHONY: ws .PHONY: ws

View File

@ -0,0 +1,3 @@
#!/bin/sh
grep -A 3 '^##' docs/CHANGELOG.md | head -n 3 | tail -n 1