Merge branch 'dev' into ci-format-debian/11.2.10.2

This commit is contained in:
OniriCorpe 2024-03-01 03:32:18 +01:00 committed by GitHub
commit 349eef899d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 12 additions and 3 deletions

10
debian/changelog vendored
View file

@ -1,4 +1,12 @@
yunohost (11.2.10.2) testing; urgency=low
yunohost (11.2.10.3) stable; urgency=low
- fix: latest release was tagged 'testing' by error
Thanks to all contributors <3 ! (Alexandre Aubin, Tagada, OniriCorpe)
-- OniriCorpe <oniricorpe@yunohost.org> Thu, 29 Feb 2024 23:49:11 +0100
yunohost (11.2.10.2) stable; urgency=low
- docs: add autoupdate.version_regex to the doc ([#1781](http://github.com/YunoHost/yunohost/pull/1781))
- chores: update actions/checkout & peter-evans/create-pull-request to nodejs20 ([#1784](http://github.com/YunoHost/yunohost/pull/1784))

View file

@ -2,8 +2,8 @@ VERSION="?"
RELEASE="testing"
REPO=$(basename $(git rev-parse --show-toplevel))
REPO_URL=$(git remote get-url origin)
ME=$(git config --global --get user.name)
EMAIL=$(git config --global --get user.email)
ME=$(git config --get user.name)
EMAIL=$(git config --get user.email)
LAST_RELEASE=$(git tag --list 'debian/11.*' --sort="v:refname" | tail -n 1)
@ -12,6 +12,7 @@ echo ""
git log $LAST_RELEASE.. -n 10000 --first-parent --pretty=tformat:' - %b%s (%h)' \
| sed -E "s&Merge .*#([0-9]+).*\$& \([#\1]\(http://github.com/YunoHost/$REPO/pull/\1\)\)&g" \
| sed -E "/Co-authored-by: .* <.*>/d" \
| grep -v "Translations update from Weblate" \
| tac