We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e78019d commit 78a42f6Copy full SHA for 78a42f6
makefile
@@ -241,6 +241,9 @@ doc:
241
change: format
242
vim ixwebsocket/IXWebSocketVersion.h docs/CHANGELOG.md
243
244
+commit:
245
+ git commit -am "`sh tools/extract_latest_change.sh`"
246
+
247
.PHONY: test
248
.PHONY: build
249
.PHONY: ws
tools/extract_latest_change.sh
@@ -0,0 +1,3 @@
1
+#!/bin/sh
2
3
+grep -A 3 '^##' docs/CHANGELOG.md | head -n 3 | tail -n 1
0 commit comments