You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
234 B
15 lines
234 B
3 years ago
|
#!/bin/bash
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
TAG="$1"
|
||
|
CHANGELOG="$2"
|
||
|
|
||
|
cat << END
|
||
|
## Changes
|
||
|
|
||
|
$(awk '/\* /{ FOUND=1; print; next } { if (FOUND) exit}' "$CHANGELOG")
|
||
|
|
||
|
[View version history](https://github.com/bblanchon/ArduinoJson/blob/$TAG/CHANGELOG.md)
|
||
|
END
|