File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed
Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3- ## [ Unreleased]
3+ ## [ 0.3.0] - 2023-01-24
4+ ### Changed
5+ - Changed JVM target version from 11 to 1.8
6+
7+ ### Added
8+ - ` StringBuilder.appendCodePoint(codePoint) `
9+ - ` CodePoints.toChars(codePoint) `
10+ - ` CodePoints.toChars(codePoint, destination, offset) `
11+
12+ ### Removed
13+ - ` CodePoints.isSurrogate(char) ` . Use ` Char.isSurrogate() ` instead.
14+ - ` CodePoints.isHighSurrogate(char) ` . Use ` Char.isHighSurrogate() ` instead.
15+ - ` CodePoints.isLowSurrogate(char) ` . Use ` Char.isLowSurrogate() ` instead.
416
517
618## [ 0.2.0] - 2023-01-19
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ kotlin-codepoints is distributed through Maven Central.
1010
1111``` kotlin
1212dependencies {
13- implementation(" de.cketti.unicode:kotlin-codepoints:0.2 .0" )
13+ implementation(" de.cketti.unicode:kotlin-codepoints:0.3 .0" )
1414}
1515```
1616
Original file line number Diff line number Diff line change 11GROUP =de.cketti.unicode
22POM_ARTIFACT_ID =kotlin-codepoints
3- VERSION_NAME =0.3.0-SNAPSHOT
3+ VERSION_NAME =0.3.0
44
55POM_NAME =kotlin-codepoints
66POM_DESCRIPTION =Kotlin Multiplatform (KMP) library that adds basic support for Unicode code points.
You can’t perform that action at this time.
0 commit comments