From 9842386f02226e38c908f8e0bc15bc272f8dfeb4 Mon Sep 17 00:00:00 2001 From: cketti Date: Sun, 19 Feb 2023 14:51:53 +0100 Subject: [PATCH] Version 0.5.0 --- CHANGELOG.md | 7 +++++++ README.md | 4 ++-- gradle.properties | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9126952..be41d62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.5.0] - 2023-02-19 +### Changed +- Added support for iterating over parts of a string when using `CodePointIterator` + +### Added +- Added `StringBuilder.appendCodePoint()` to `kotlin-codepoints-deluxe` + ## [0.4.0] - 2023-01-31 ### Changed - `CodePoints.toChars(Int, CharArray, Int)` is now bug-compatible with `java.lang.Character.toChars(int, char[], int)`. diff --git a/README.md b/README.md index 7ece6aa..633128c 100644 --- a/README.md +++ b/README.md @@ -11,12 +11,12 @@ kotlin-codepoints is distributed through Maven Central. ```kotlin dependencies { // Basic API - implementation("de.cketti.unicode:kotlin-codepoints:0.4.0") + implementation("de.cketti.unicode:kotlin-codepoints:0.5.0") // or // Nice API - implementation("de.cketti.unicode:kotlin-codepoints-deluxe:0.4.0") + implementation("de.cketti.unicode:kotlin-codepoints-deluxe:0.5.0") } ``` diff --git a/gradle.properties b/gradle.properties index 695869e..aa693be 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=de.cketti.unicode -VERSION_NAME=0.5.0-SNAPSHOT +VERSION_NAME=0.5.0 POM_INCEPTION_YEAR=2023