From 5774e7490b268662619ab3f2b27b7cb5d370204c Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Tue, 28 Sep 2021 17:43:03 -0700 Subject: [PATCH] Add changelog helper script --- script/changelog | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 script/changelog diff --git a/script/changelog b/script/changelog new file mode 100755 index 0000000..4257b67 --- /dev/null +++ b/script/changelog @@ -0,0 +1,7 @@ +#!/bin/bash + +set -e + +VERSION=v$(grep __VERSION__ octodns/__init__.py | sed -e "s/^[^']*'//" -e "s/'$//") +echo $VERSION +git log --pretty="%h - %cr - %s (%an)" "${VERSION}..HEAD"