Skip to content

Commit ac2b9e9

Browse files
committed
chore: release v0.5.23
1 parent bdc0725 commit ac2b9e9

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
# Changelog
22

33

4+
## v0.5.22...main
5+
6+
[compare changes](https://github.com/stacksjs/buddy-bot/compare/v0.5.22...main)
7+
8+
### 🚀 Enhancements
9+
10+
- Improve version change display to preserve constraint formats ([bdc0725](https://github.com/stacksjs/buddy-bot/commit/bdc0725))
11+
12+
### ❤️ Contributors
13+
14+
- Chris ([@chrisbbreuer](https://github.com/chrisbbreuer))
15+
416
## v0.5.21...main
517

618
[compare changes](https://github.com/stacksjs/buddy-bot/compare/v0.5.21...main)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "buddy-bot",
33
"type": "module",
4-
"version": "0.5.22",
4+
"version": "0.5.23",
55
"description": "The Stacks CLI.",
66
"author": "Chris Breuer <[email protected]>",
77
"license": "MIT",

src/pr/pr-generator.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ export class PullRequestGenerator {
619619

620620
body += `<details>\n`
621621
body += `<summary>${displayName}</summary>\n\n`
622-
622+
623623
// Use consistent version formatting with constraints
624624
const versionChange = this.formatVersionChange(update.currentVersion, update.newVersion)
625625
.replace(/`/g, '') // Remove backticks for clean display in details
@@ -655,12 +655,12 @@ export class PullRequestGenerator {
655655
for (const update of uniqueComposerUpdates) {
656656
body += `<details>\n`
657657
body += `<summary>${update.name}</summary>\n\n`
658-
658+
659659
// Use consistent version formatting with constraints
660660
const versionChange = this.formatVersionChange(update.currentVersion, update.newVersion)
661661
.replace(/`/g, '') // Remove backticks for clean display in details
662662
body += `**${versionChange}**\n\n`
663-
663+
664664
body += `Visit [${update.name}](https://packagist.org/packages/${encodeURIComponent(update.name)}) on Packagist for more information.\n\n`
665665
body += `</details>\n\n`
666666
}
@@ -669,12 +669,12 @@ export class PullRequestGenerator {
669669
for (const update of uniqueGithubActionsUpdates) {
670670
body += `<details>\n`
671671
body += `<summary>${update.name}</summary>\n\n`
672-
672+
673673
// Use consistent version formatting with constraints
674674
const versionChange = this.formatVersionChange(update.currentVersion, update.newVersion)
675675
.replace(/`/g, '') // Remove backticks for clean display in details
676676
body += `**${versionChange}**\n\n`
677-
677+
678678
body += `Visit [${update.name}](https://github.com/${update.name}/releases) for release notes.\n\n`
679679
body += `</details>\n\n`
680680
}

0 commit comments

Comments
 (0)