zenith-language 0.4.5 → 1.3.0

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/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.4.7] - 2026-01-26
9
+
10
+ ### 📝 Other Changes
11
+
12
+ - **** ()
13
+
8
14
  ## [0.4.0] - 2026-01-16
9
15
 
10
16
  ### ✨ Features
@@ -0,0 +1,24 @@
1
+ # 🚀 zenith-language v0.4.7
2
+
3
+ ## [0.4.7] - 2026-01-26
4
+
5
+ ### 📝 Other Changes
6
+
7
+ - **** ()
8
+
9
+
10
+
11
+ ## 📦 Installation
12
+
13
+ ```bash
14
+ bun add zenith-language@0.4.7
15
+ ```
16
+
17
+ *or with npm:*
18
+
19
+ ```bash
20
+ npm install zenith-language@0.4.7
21
+ ```
22
+
23
+ ---
24
+ *Generated by Zenith Automated Release*
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "zenith-language",
3
3
  "displayName": "Zenith Language Support",
4
4
  "description": "Syntax highlighting, IntelliSense, and editor support for Zenith Framework (.zen files)",
5
- "version": "0.4.5",
5
+ "version": "1.3.0",
6
6
  "publisher": "ZenithBuild",
7
7
  "engines": {
8
8
  "vscode": "^1.80.0"
@@ -107,4 +107,4 @@
107
107
  "dependencies": {
108
108
  "vscode-languageclient": "^9.0.1"
109
109
  }
110
- }
110
+ }
@@ -279,9 +279,13 @@ function generateChangelog(
279
279
  changelog += `### ⚠️ BREAKING CHANGES\n\n`;
280
280
  for (const commit of breakingChanges) {
281
281
  const scope = commit.scope ? `**${commit.scope}**: ` : "";
282
- changelog += `- ${scope}${commit.subject} (${commit.hash.slice(0, 7)})\n`;
282
+ changelog += `#### ${scope}${commit.subject} (${commit.hash.slice(0, 7)})\n`;
283
+ if (commit.body) {
284
+ changelog += `\n${commit.body.split('\n').map(line => `> ${line}`).join('\n')}\n`;
285
+ }
286
+ changelog += "\n";
283
287
  }
284
- changelog += "\n";
288
+ changelog += "---\n\n";
285
289
  }
286
290
 
287
291
  // Regular changes by type
@@ -294,7 +298,14 @@ function generateChangelog(
294
298
  changelog += `### ${typeConfig.title}\n\n`;
295
299
  for (const commit of typeCommits) {
296
300
  const scope = commit.scope ? `**${commit.scope}**: ` : "";
297
- changelog += `- ${scope}${commit.subject} (${commit.hash.slice(0, 7)})\n`;
301
+ changelog += `- **${scope}${commit.subject}** (${commit.hash.slice(0, 7)})\n`;
302
+
303
+ // Include body if present
304
+ if (commit.body && commit.body.trim()) {
305
+ const cleanedBody = commit.body.trim();
306
+ // Indent body for better hierarchy
307
+ changelog += `${cleanedBody.split('\n').map(line => ` > ${line}`).join('\n')}\n`;
308
+ }
298
309
  }
299
310
  changelog += "\n";
300
311
  }
@@ -303,7 +314,10 @@ function generateChangelog(
303
314
  if (groupedCommits.other && groupedCommits.other.length > 0) {
304
315
  changelog += `### 📝 Other Changes\n\n`;
305
316
  for (const commit of groupedCommits.other) {
306
- changelog += `- ${commit.subject} (${commit.hash.slice(0, 7)})\n`;
317
+ changelog += `- **${commit.subject}** (${commit.hash.slice(0, 7)})\n`;
318
+ if (commit.body && commit.body.trim()) {
319
+ changelog += `${commit.body.trim().split('\n').map(line => ` > ${line}`).join('\n')}\n`;
320
+ }
307
321
  }
308
322
  changelog += "\n";
309
323
  }
@@ -319,21 +333,24 @@ function generateReleaseNotes(
319
333
  ): string {
320
334
  const changelog = generateChangelog(commits, newVersion, config);
321
335
 
322
- return `# ${packageName} v${newVersion}
336
+ return `# 🚀 ${packageName} v${newVersion}
323
337
 
324
338
  ${changelog}
325
339
 
326
- ## Installation
340
+ ## 📦 Installation
327
341
 
328
342
  \`\`\`bash
329
343
  bun add ${packageName}@${newVersion}
330
344
  \`\`\`
331
345
 
332
- or with npm:
346
+ *or with npm:*
333
347
 
334
348
  \`\`\`bash
335
349
  npm install ${packageName}@${newVersion}
336
350
  \`\`\`
351
+
352
+ ---
353
+ *Generated by Zenith Automated Release*
337
354
  `;
338
355
  }
339
356