Skip to content

Commit

Permalink
Prettified Code!
Browse files Browse the repository at this point in the history
  • Loading branch information
IanSkelskey authored and actions-user committed Nov 15, 2024
1 parent 064f368 commit 1f12562
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

## Changelog Summary

- Enhanced version bump and changelog handling.
- Improved commit flow with Launchpad bug integration.
- Enhanced commit message handling by improved sanitization logic, specifically replacing newline characters with escape sequences for better multi-line support.
- Refactored code for improved readability and error handling.
- Utilized temporary files for git commit message construction.
- General code prettification and refactoring for better code organization and functionality.
- Enhanced version bump and changelog handling.
- Improved commit flow with Launchpad bug integration.
- Enhanced commit message handling by improved sanitization logic, specifically replacing newline characters with escape sequences for better multi-line support.
- Refactored code for improved readability and error handling.
- Utilized temporary files for git commit message construction.
- General code prettification and refactoring for better code organization and functionality.
2 changes: 1 addition & 1 deletion version-bump.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function bumpVersion(increment: semver.ReleaseType): string {
const readmeContent = fs.readFileSync(readmePath, 'utf8');
const updatedReadmeContent = readmeContent.replace(
/!\[Version\]\(https:\/\/img.shields.io\/badge\/version-[\d.]+-blue\)/,
`![Version](https://img.shields.io/badge/version-${newVersion}-blue)`
`![Version](https://img.shields.io/badge/version-${newVersion}-blue)`,
);
fs.writeFileSync(readmePath, updatedReadmeContent);
console.log(`README.md updated with new version badge ${newVersion}`);
Expand Down

0 comments on commit 1f12562

Please sign in to comment.