Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit 00768a1

Browse files
gnunicorns3krit
andauthored
Releasing rc4 – Rhinoceros (#6515)
Co-authored-by: Martin Pugh <pugh@s3kr.it>
1 parent a1877dc commit 00768a1

188 files changed

Lines changed: 1876 additions & 1823 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.maintain/gitlab/generate_changelog.sh

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,17 @@ while IFS= read -r line; do
1919
if has_label 'paritytech/substrate' "$pr_id" 'B0-silent'; then
2020
continue
2121
fi
22-
if has_label 'paritytech/substrate' "$pr_id" 'B1-runtimenoteworthy'; then
23-
runtime_changes="$runtime_changes
22+
if has_label 'paritytech/substrate' "$pr_id" 'B3-apinoteworthy' ; then
23+
api_changes="$api_changes
2424
$line"
2525
fi
26-
if has_label 'paritytech/substrate' "$pr_id" 'B1-clientnoteworthy'; then
26+
if has_label 'paritytech/substrate' "$pr_id" 'B5-clientnoteworthy'; then
2727
client_changes="$client_changes
2828
$line"
2929
fi
30-
if has_label 'paritytech/substrate' "$pr_id" 'B1-apinoteworthy' ; then
31-
api_changes="$api_changes
30+
if has_label 'paritytech/substrate' "$pr_id" 'B7-runtimenoteworthy'; then
31+
runtime_changes="$runtime_changes
3232
$line"
33-
continue
3433
fi
3534
done <<< "$all_changes"
3635

.maintain/gitlab/lib.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ api_base="https://api.github.com/repos"
55
# Function to take 2 git tags/commits and get any lines from commit messages
66
# that contain something that looks like a PR reference: e.g., (#1234)
77
sanitised_git_logs(){
8-
git --no-pager log --pretty=format:"%s" "$1..$2" |
8+
git --no-pager log --pretty=format:"%s" "$1...$2" |
99
# Only find messages referencing a PR
1010
grep -E '\(#[0-9]+\)' |
1111
# Strip any asterisks

0 commit comments

Comments
 (0)