From f1206811d06cf75d764ce9e0e6aeb754505cbd50 Mon Sep 17 00:00:00 2001 From: Linus Probert Date: Thu, 17 May 2018 23:18:35 +0200 Subject: [PATCH] Fixed the releasenotes and the script for it --- build/releasenotes/early-access-v6.txt | 4 ++++ build/scripts/release_patch_version.sh | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/build/releasenotes/early-access-v6.txt b/build/releasenotes/early-access-v6.txt index e69de29..522707b 100644 --- a/build/releasenotes/early-access-v6.txt +++ b/build/releasenotes/early-access-v6.txt @@ -0,0 +1,4 @@ +998501a Patch version raised to 6 +2813a57 Separate player movement from input event loop. +c4dc838 Monsters now indicate their state with speech bubbles +f049d66 Fixed releasenotes and script again diff --git a/build/scripts/release_patch_version.sh b/build/scripts/release_patch_version.sh index c6c0f55..c79f9e0 100644 --- a/build/scripts/release_patch_version.sh +++ b/build/scripts/release_patch_version.sh @@ -9,7 +9,7 @@ NEXT_TAG=early-access-v$NEXT_VERSION # Update the version and create release notes sed -i -e "s/breakhack_PATCH_VERSION [0-9]\+/breakhack_PATCH_VERSION $NEXT_VERSION/" CMakeLists.txt -git log --oneline $LAST_TAG..$NEXT_TAG > build/releasenotes/$NEXT_TAG.txt +git log --oneline $LAST_TAG..HEAD > build/releasenotes/$NEXT_TAG.txt git add build/releasenotes/$NEXT_TAG.txt git commit -a -m"Patch version raised to $NEXT_VERSION"