summaryrefslogtreecommitdiff
path: root/hack
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-09-07 18:49:23 +0200
committerGitHub <noreply@github.com>2021-09-07 18:49:23 +0200
commitfbae579a31b580f45c25c2dcae87fc8a51e33009 (patch)
treea0554426809f11c6005a7550dc081f032d4c5b97 /hack
parentc9646b51260da48f1008af1bc87107ed89ca8c64 (diff)
parent0d1ba0a58fdb15af7ee3f3650f633156575d296d (diff)
downloadpodman-fbae579a31b580f45c25c2dcae87fc8a51e33009.tar.gz
podman-fbae579a31b580f45c25c2dcae87fc8a51e33009.tar.bz2
podman-fbae579a31b580f45c25c2dcae87fc8a51e33009.zip
Merge pull request #11467 from jesperpedersen/changelog
Remove changelog.txt from the repository
Diffstat (limited to 'hack')
-rwxr-xr-xhack/release.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/hack/release.sh b/hack/release.sh
index 34842de2e..7925d55ad 100755
--- a/hack/release.sh
+++ b/hack/release.sh
@@ -36,20 +36,10 @@ write_spec_version()
sed -i "s/^\(Version: *\).*/\1${LOCAL_VERSION}/" contrib/spec/podman.spec.in
}
-write_changelog()
-{
- echo "- Changelog for v${VERSION} (${DATE})" >.changelog.txt &&
- git log --no-merges --format=' * %s' "${LAST_TAG}..HEAD" >>.changelog.txt &&
- echo >>.changelog.txt &&
- cat changelog.txt >>.changelog.txt &&
- mv -f .changelog.txt changelog.txt
-}
-
release_commit()
{
write_go_version "${VERSION}" &&
write_spec_version "${VERSION}" &&
- write_changelog &&
git commit -asm "Bump to v${VERSION}"
}