diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-06-22 14:11:50 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-06-22 14:11:50 +0100 |
commit | 5a0331e5575034a145956f76316ee0fcdf72077e (patch) | |
tree | 5b6751839fd5de09f20e70510617bf71ade23095 /xtask | |
parent | a783d2a1baf7b4a33c6d4a04860998a2af5e1d9a (diff) | |
parent | 4b17a90c414f4e745a38b83d13fb6405c9a44969 (diff) |
Merge #4984
4984: Add sponsors section to changelog r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'xtask')
-rw-r--r-- | xtask/src/release.rs | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/xtask/src/release.rs b/xtask/src/release.rs index 36c912184..b6502b952 100644 --- a/xtask/src/release.rs +++ b/xtask/src/release.rs | |||
@@ -28,21 +28,23 @@ impl ReleaseCmd { | |||
28 | 28 | ||
29 | let contents = format!( | 29 | let contents = format!( |
30 | "\ | 30 | "\ |
31 | = Changelog #{} | 31 | = Changelog #{} |
32 | :sectanchors: | 32 | :sectanchors: |
33 | :page-layout: post | 33 | :page-layout: post |
34 | 34 | ||
35 | Commit: commit:{}[] + | 35 | Commit: commit:{}[] + |
36 | Release: release:{}[] | 36 | Release: release:{}[] |
37 | 37 | ||
38 | == New Features | 38 | == Sponsors |
39 | 39 | ||
40 | * pr:[] . | 40 | == New Features |
41 | 41 | ||
42 | == Fixes | 42 | * pr:[] . |
43 | 43 | ||
44 | == Internal Improvements | 44 | == Fixes |
45 | ", | 45 | |
46 | == Internal Improvements | ||
47 | ", | ||
46 | changelog_n, commit, today | 48 | changelog_n, commit, today |
47 | ); | 49 | ); |
48 | 50 | ||