From c5be02d927d5d96f1ff3f0b0e5d8b5f53d987066 Mon Sep 17 00:00:00 2001 From: cketti Date: Tue, 24 Jan 2023 14:37:35 +0100 Subject: [PATCH] Version 0.3.0 --- CHANGELOG.md | 14 +++++++++++++- README.md | 2 +- gradle.properties | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 12e3b72..73aabf7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ # Changelog -## [Unreleased] +## [0.3.0] - 2023-01-24 +### Changed +- Changed JVM target version from 11 to 1.8 + +### Added +- `StringBuilder.appendCodePoint(codePoint)` +- `CodePoints.toChars(codePoint)` +- `CodePoints.toChars(codePoint, destination, offset)` + +### Removed +- `CodePoints.isSurrogate(char)`. Use `Char.isSurrogate()` instead. +- `CodePoints.isHighSurrogate(char)`. Use `Char.isHighSurrogate()` instead. +- `CodePoints.isLowSurrogate(char)`. Use `Char.isLowSurrogate()` instead. ## [0.2.0] - 2023-01-19 diff --git a/README.md b/README.md index f5a3cae..7fe5c6b 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ kotlin-codepoints is distributed through Maven Central. ```kotlin dependencies { - implementation("de.cketti.unicode:kotlin-codepoints:0.2.0") + implementation("de.cketti.unicode:kotlin-codepoints:0.3.0") } ``` diff --git a/gradle.properties b/gradle.properties index b50a78f..1a319fe 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ GROUP=de.cketti.unicode POM_ARTIFACT_ID=kotlin-codepoints -VERSION_NAME=0.3.0-SNAPSHOT +VERSION_NAME=0.3.0 POM_NAME=kotlin-codepoints POM_DESCRIPTION=Kotlin Multiplatform (KMP) library that adds basic support for Unicode code points.