-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add more rune overloads #222
Conversation
CHANGELOG.md
Outdated
@@ -15,6 +15,8 @@ This is the `v2` release of the **ValueStringBuilder**. There aren't any noticea | |||
- Added `Append(Rune)` overload | |||
- Added `AppendJoin(Rune, IEnumerable<string?>)` overload | |||
- Added `AppendJoin<T>(Rune, IEnumerable<T>)` overload | |||
- Added `Replace(Rune, Rune)` overload |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As I already released a version with the other ones, you would have to add a new ### ADDED
under the unreleased part.
Something along the line like:
## Unreleased
### Added
- Added `Replace(Rune, Rune)` overload
- Added `Replace(Rune, Rune, int, int)` overload
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed!!
Much appreciated - besides the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Amazing! Thanks. Will make a release
Oh noy - I did screw up the merge. Could you force-push your version and resolve the merge conflict? |
All good, I force-pushed the last commit. |
Quality Gate passedIssues Measures |
Replace(Rune, Rune)
overloadReplace(Rune, Rune, int, int)
overload