Skip to content
Merged

Dev #22

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions packages/changesets-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @qualcomm-ui/changesets-cli Changelog

## 1.2.0

Jun 4th, 2026

### Features

- [changelog-formatter]: add updated package version information to release line ([3d95168](https://github.com/qualcomm/qualcomm-ui-utils/commit/3d95168))

## 1.1.0

May 14th, 2026
Expand Down
2 changes: 1 addition & 1 deletion packages/changesets-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@qualcomm-ui/changesets-cli",
"version": "1.1.0",
"version": "1.2.0",
"description": "Changeset automation CLI for conventional commits",
"author": "Ryan Bower",
"license": "BSD-3-Clause-Clear",
Expand Down
6 changes: 5 additions & 1 deletion packages/changesets-cli/src/changelog-formatter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ interface ChangesetInfo {

interface DependencyUpdated {
name: string
newVersion: string
}

interface ChangelogOptions {
Expand Down Expand Up @@ -43,7 +44,10 @@ const changelogFunctions = {
return ""
}

const deps = dependenciesUpdated.map((d) => d.name).join(", ")
const deps = dependenciesUpdated
// TODO: link to changelog?
.map((d) => `${d.name}@${d.newVersion}`)
.join(", ")
return `### Miscellaneous Chores\n* **deps:** update dependencies [${deps}]`
},

Expand Down
Loading