blob: 7509c9f248617627ae7afa382f3a66bf47062004 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env bash
# SPDX-FileCopyrightText: 2025 Linnea Gräf <nea@nea.moe>
#
# SPDX-License-Identifier: GPL-3.0-or-later
dbg() {
echo "$@" >&2
}
THIS_VERSION=$(git describe --tags --abbrev=0 HEAD|tr -d '\n')
LAST_VERSION=$(git describe --tags --abbrev=0 HEAD^|tr -d '\n')
echo "**Full Changelog**: <https://github.com/nea89o/Firmament/compare/$LAST_VERSION...$THIS_VERSION>"
git log --pretty='- %s ~%aN' --grep '[no changelog]' --invert-grep --fixed-strings "$LAST_VERSION..$THIS_VERSION" | sort
|