relacher 0.0.4-rc.8 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "relacher",
3
- "version": "0.0.4-rc.8",
3
+ "version": "0.0.4",
4
4
  "description": "Scriptable release orchestration library for monorepos",
5
5
  "type": "module",
6
6
  "private": false,
@@ -66,9 +66,9 @@ export function defaultChangelogTemplate({ version, date, commits }: ChangelogCo
66
66
 
67
67
  if (groups.breaking.length)
68
68
  block += `### ⚠️ BREAKING CHANGES\n${formatGroup(groups.breaking)}\n\n`;
69
- if (groups.feat.length) block += `### ✨ Features\n${formatGroup(groups.feat)}\n\n`;
70
- if (groups.fix.length) block += `### 🐛 Bug Fixes\n${formatGroup(groups.fix)}\n\n`;
71
- if (groups.other.length) block += `### 🛠 Other Changes\n${formatGroup(groups.other)}\n\n`;
69
+ if (groups.feat.length) block += `### Features\n${formatGroup(groups.feat)}\n\n`;
70
+ if (groups.fix.length) block += `### Bug Fixes\n${formatGroup(groups.fix)}\n\n`;
71
+ if (groups.other.length) block += `### Other Changes\n${formatGroup(groups.other)}\n\n`;
72
72
 
73
73
  return block.trim() + '\n';
74
74
  }