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 1
1
# Changelog
2
2
3
- ## [ Unreleased ]
3
+ ## [ 0.9.0 ] - 2024-06-24
4
4
### 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.
6
7
7
8
### 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.
11
18
12
19
## [ 0.8.0] - 2024-06-09
13
20
### Changed
Original file line number Diff line number Diff line change @@ -11,12 +11,12 @@ kotlin-codepoints is distributed through Maven Central.
11
11
``` kotlin
12
12
dependencies {
13
13
// Basic API
14
- implementation(" de.cketti.unicode:kotlin-codepoints:0.8 .0" )
14
+ implementation(" de.cketti.unicode:kotlin-codepoints:0.9 .0" )
15
15
16
16
// or
17
17
18
18
// Nice API
19
- implementation(" de.cketti.unicode:kotlin-codepoints-deluxe:0.8 .0" )
19
+ implementation(" de.cketti.unicode:kotlin-codepoints-deluxe:0.9 .0" )
20
20
}
21
21
```
22
22
Original file line number Diff line number Diff line change 1
1
GROUP =de.cketti.unicode
2
- VERSION_NAME =0.9.0-SNAPSHOT
2
+ VERSION_NAME =0.9.0
3
3
4
4
POM_INCEPTION_YEAR =2023
5
5
You can’t perform that action at this time.
0 commit comments