relion 0.45.0 → 0.46.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.
Files changed (2) hide show
  1. package/README.md +13 -19
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -4,10 +4,9 @@
4
4
  <img alt="logo" src=".github/logo-light.png">
5
5
  </picture>
6
6
  <br>
7
- <a href="https://www.npmjs.com/package/relion"><img src="https://img.shields.io/npm/v/relion?label=npm&logo=npm&style=flat-square&color=A4BFFF&labelColor=303145" alt="npm version"/></a>&nbsp;
8
- <a href="https://www.npmjs.com/package/relion"><img src="https://img.badgesize.io/https:/unpkg.com/relion/dist/cli.js?label=Size&logo=hackthebox&logoColor=c97026&style=flat-square&color=A4BFFF&labelColor=303145" alt="bundle size"/></a>&nbsp;
9
- <a href="https://github.com/kh4f/relion/issues?q=is%3Aissue+is%3Aopen+label%3Abug"><img src="https://img.shields.io/github/issues/kh4f/relion/bug?label=%F0%9F%90%9B%20Bugs&style=flat-square&color=A4BFFF&labelColor=303145" alt="open bugs"></a>&nbsp;
10
- <a href="https://github.com/kh4f/relion/blob/master/LICENSE"><img src="https://img.shields.io/github/license/kh4f/relion?style=flat-square&label=%F0%9F%9B%A1%EF%B8%8F%20License&color=A4BFFF&labelColor=303145" alt="license"></a>
7
+ <a href="https://www.npmjs.com/package/relion"><img src="https://img.shields.io/npm/v/relion?label=npm&logo=npm&style=flat-square&color=BCC7EC&labelColor=303145" alt="npm version"/></a>&nbsp;
8
+ <a href="https://www.npmjs.com/package/relion"><img src="https://img.badgesize.io/https:/unpkg.com/relion/dist/cli.js?label=Size&logo=hackthebox&logoColor=c97026&style=flat-square&color=BCC7EC&labelColor=303145" alt="bundle size"/></a>&nbsp;
9
+ <a href="https://github.com/kh4f/relion/issues?q=is%3Aissue+is%3Aopen+label%3Abug"><img src="https://img.shields.io/github/issues/kh4f/relion/bug?label=%F0%9F%90%9B%20Bugs&style=flat-square&color=BCC7EC&labelColor=303145" alt="open bugs"></a>
11
10
  <br><br>
12
11
  <b>A zero‑config npm lib for automating the release workflow:<br></b> version bumping, release commit & tag creation, and AI‑assisted changelog generation
13
12
  <br><br>
@@ -70,7 +69,7 @@ About to create a tag: 'git tag v0.43.0 -m "chore(release): v0.43.0"'
70
69
 
71
70
  <details><summary>Generated release context example (*):</summary>
72
71
 
73
- ```md
72
+ ```markdown
74
73
  ---
75
74
  tag: v0.33.0
76
75
  prevTag: v0.32.1
@@ -93,18 +92,19 @@ Previously, if commits contained both features and breaking changes, features wo
93
92
 
94
93
  ## 📋 Changelog Generation
95
94
 
96
- Relion doesn’t format the changelog itself — instead, it generates a release context that you can turn into a polished changelog using AI.
95
+ Relion doesn’t format the changelog itself. Instead, it generates a `RELEASE.md` file with release metadata and commit log, and provides a [`generate-changelog`](skills/generate-changelog/SKILL.md) skill to turn that context into a polished changelog entry with AI.
97
96
 
98
- Example workflow using GitHub Copilot:
97
+ Recommended workflow:
99
98
 
100
- 1. Set up the [instruction](.github/instructions/changelog-format.instructions.md) and [prompt](.github/prompts/generate-changelog.prompt.md)
99
+ 1. Install the skill: `bunx skills add kh4f/relion [-g]`
100
+ (see the [`skills` CLI docs](https://www.npmjs.com/package/skills))
101
101
  2. Run Relion to generate `RELEASE.md`
102
- 3. Review the release context
103
- 4. Run `/generate-changelog` in VS Code Copilot chat
102
+ 3. Review the generated release context
103
+ 4. Ask your AI agent to generate a changelog
104
104
 
105
- <details><summary>Generated changelog example (from the (*) release context using the instruction and prompt above; Gemini 3 Pro)</summary>
105
+ <details><summary>Generated changelog example (from the (*) release context; Gemini 3 Pro)</summary>
106
106
 
107
- ```md
107
+ ```markdown
108
108
  ## &ensp; [` 📦 v0.33.0 `](https://github.com/kh4f/relion/compare/v0.32.1...v0.33.0)
109
109
 
110
110
  ### &emsp; 🎁 Features
@@ -115,10 +115,4 @@ Example workflow using GitHub Copilot:
115
115
 
116
116
  ##### &emsp;&emsp; [Full Changelog](https://github.com/kh4f/relion/compare/v0.32.1...v0.33.0) &ensp;•&ensp; Jan 10, 2026
117
117
  ```
118
- </details>
119
-
120
- <br>
121
-
122
- <div align="center">
123
- <b>MIT License © 2025-2026 <a href="https://github.com/kh4f">kh4f</a></b>
124
- </div>
118
+ </details>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "relion",
3
- "version": "0.45.0",
3
+ "version": "0.46.0",
4
4
  "description": "🏷️ Release Workflow Helper",
5
5
  "author": "kh4f <kh4f.dev@gmail.com>",
6
6
  "license": "MIT",
@@ -16,6 +16,7 @@
16
16
  "build:watch": "tsdown --watch",
17
17
  "build:prod": "tsdown --prod",
18
18
  "lint": "eslint",
19
+ "typecheck": "tsc",
19
20
  "test": "bun test",
20
21
  "release": "bun src/cli"
21
22
  },