File tree Expand file tree Collapse file tree 3 files changed +15
-8
lines changed
Expand file tree Collapse file tree 3 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3- ## [ Unreleased ]
3+ ## [ 0.9.0 ] - 2024-06-24
44### Changed
5- - ` CodePoint.toString() ` now returns the string representation of a code point.
5+ - kotlin-codepoints-deluxe
6+ - ` CodePoint.toString() ` now returns the string representation of a code point.
67
78### Added
8- - ` CodePoint.toUnicodeNotation() ` returns the standard Unicode notation of a code point, e.g. ` U+1F4E7 ` .
9- - ` CharSequence.codePointCount() ` variant without parameters.
10- - ` CodePoints.toString(…) ` creates a string from the given code points.
9+ - kotlin-codepoints
10+ - Added ` CharSequence.codePointCount() ` variant without parameters.
11+ - Added ` CodePoints.toString(…) ` that creates a string from the given code points.
12+ - Added ` CharSequence.forEachCodePoint() ` and ` CharSequence.forEachCodePointIndexed() ` to iterate over code points in
13+ a character sequence.
14+ - kotlin-codepoints-deluxe
15+ - ` CodePoint.toUnicodeNotation() ` returns the standard Unicode notation of a code point, e.g. ` U+1F4E7 ` .
16+ - Added ` CharSequence.forEachCodePoint() ` and ` CharSequence.forEachCodePointIndexed() ` to iterate over code points in
17+ a character sequence.
1118
1219## [ 0.8.0] - 2024-06-09
1320### Changed
Original file line number Diff line number Diff line change @@ -11,12 +11,12 @@ kotlin-codepoints is distributed through Maven Central.
1111``` kotlin
1212dependencies {
1313 // Basic API
14- implementation(" de.cketti.unicode:kotlin-codepoints:0.8 .0" )
14+ implementation(" de.cketti.unicode:kotlin-codepoints:0.9 .0" )
1515
1616 // or
1717
1818 // Nice API
19- implementation(" de.cketti.unicode:kotlin-codepoints-deluxe:0.8 .0" )
19+ implementation(" de.cketti.unicode:kotlin-codepoints-deluxe:0.9 .0" )
2020}
2121```
2222
Original file line number Diff line number Diff line change 11GROUP =de.cketti.unicode
2- VERSION_NAME =0.9.0-SNAPSHOT
2+ VERSION_NAME =0.9.0
33
44POM_INCEPTION_YEAR =2023
55
You can’t perform that action at this time.
0 commit comments