You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> - Confirm → finalize and print the clean release note
79
+
> - Provide a different version (e.g. `v2.0.0`) → reformat with that version
80
+
> - Cancel → discard
81
+
82
+
Once confirmed:
83
+
84
+
1.**Update `package.json`** — read the file, set `"version"` to the confirmed version (without the `v` prefix, e.g. `"1.3.0"`), and write it back.
85
+
86
+
2.**Update `CHANGELOG.md`** — prepend the new release section (without the `> Suggested bump:` line) to the top of the entries in `CHANGELOG.md`. If the file doesn't exist, create it with a standard header:
87
+
```markdown
88
+
# Changelog
89
+
90
+
All notable changes to this project will be documented in this file.
91
+
92
+
This project adheres to [Semantic Versioning](https://semver.org/).
93
+
94
+
---
95
+
```
96
+
Then append the release section below the `---` separator.
97
+
98
+
3.**Output the final release note** ready to paste into a GitHub Release or PR description.
0 commit comments