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
feat: always show bump type label on changelog items (#89)
## Summary
- Always display the bump type tag (e.g. `*(minor)*`) on every changelog
item, not just when it differs from the release's overall bump type
- Dependency, cascade, and group bump lines also now include the bump
type tag
- Items were already sorted major > minor > patch (no change needed)
- Includes minor doc/schema fixes from prior work
## Example
**Before:**
```
- Added new feature
- *(patch)* Fixed a bug
```
**After:**
```
- *(minor)* Added new feature
- *(patch)* Fixed a bug
```
Copy file name to clipboardExpand all lines: packages/bumpy/CHANGELOG.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
<sub>2026-05-27</sub>
6
6
7
-
-[#87](https://github.com/dmno-dev/bumpy/pull/87) - Fix draft release functions (`createDraftRelease`, `updateReleaseBody`, `finalizeRelease`, `deleteRelease`) to use `BUMPY_GH_TOKEN` via `withReleaseToken` so that GitHub release events trigger downstream workflows. Also disables npm staged publishing (not yet ready) and removes the npm upgrade step from the release workflow.
7
+
-[#87](https://github.com/dmno-dev/bumpy/pull/87) - Fix draft release functions (`createDraftRelease`, `updateReleaseBody`, `finalizeRelease`, `deleteRelease`) to use `BUMPY_GH_TOKEN` via `withReleaseToken` so that GitHub release events trigger downstream workflows. Also disables npm staged publishing (not yet ready).
0 commit comments