diff options
-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 | ||