Skip to content

Commit 9842386

Browse files
committed
Version 0.5.0
1 parent 7831019 commit 9842386

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.5.0] - 2023-02-19
4+
### Changed
5+
- Added support for iterating over parts of a string when using `CodePointIterator`
6+
7+
### Added
8+
- Added `StringBuilder.appendCodePoint()` to `kotlin-codepoints-deluxe`
9+
310
## [0.4.0] - 2023-01-31
411
### Changed
512
- `CodePoints.toChars(Int, CharArray, Int)` is now bug-compatible with `java.lang.Character.toChars(int, char[], int)`.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ kotlin-codepoints is distributed through Maven Central.
1111
```kotlin
1212
dependencies {
1313
// Basic API
14-
implementation("de.cketti.unicode:kotlin-codepoints:0.4.0")
14+
implementation("de.cketti.unicode:kotlin-codepoints:0.5.0")
1515

1616
// or
1717

1818
// Nice API
19-
implementation("de.cketti.unicode:kotlin-codepoints-deluxe:0.4.0")
19+
implementation("de.cketti.unicode:kotlin-codepoints-deluxe:0.5.0")
2020
}
2121
```
2222

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=de.cketti.unicode
2-
VERSION_NAME=0.5.0-SNAPSHOT
2+
VERSION_NAME=0.5.0
33

44
POM_INCEPTION_YEAR=2023
55

0 commit comments

Comments
 (0)