Skip to content

Commit c5be02d

Browse files
committed
Version 0.3.0
1 parent 2363e53 commit c5be02d

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ kotlin-codepoints is distributed through Maven Central.
1010

1111
```kotlin
1212
dependencies {
13-
implementation("de.cketti.unicode:kotlin-codepoints:0.2.0")
13+
implementation("de.cketti.unicode:kotlin-codepoints:0.3.0")
1414
}
1515
```
1616

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
GROUP=de.cketti.unicode
22
POM_ARTIFACT_ID=kotlin-codepoints
3-
VERSION_NAME=0.3.0-SNAPSHOT
3+
VERSION_NAME=0.3.0
44

55
POM_NAME=kotlin-codepoints
66
POM_DESCRIPTION=Kotlin Multiplatform (KMP) library that adds basic support for Unicode code points.

0 commit comments

Comments
 (0)