Skip to content

Commit f42fd18

Browse files
committed
Version 0.9.0
1 parent bd63005 commit f42fd18

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

CHANGELOG.md

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

3-
## [Unreleased]
3+
## [0.9.0] - 2024-06-24
44
### Changed
5-
- `CodePoint.toString()` now returns the string representation of a code point.
5+
- kotlin-codepoints-deluxe
6+
- `CodePoint.toString()` now returns the string representation of a code point.
67

78
### Added
8-
- `CodePoint.toUnicodeNotation()` returns the standard Unicode notation of a code point, e.g. `U+1F4E7`.
9-
- `CharSequence.codePointCount()` variant without parameters.
10-
- `CodePoints.toString(…)` creates a string from the given code points.
9+
- kotlin-codepoints
10+
- Added `CharSequence.codePointCount()` variant without parameters.
11+
- Added `CodePoints.toString(…)` that creates a string from the given code points.
12+
- Added `CharSequence.forEachCodePoint()` and `CharSequence.forEachCodePointIndexed()` to iterate over code points in
13+
a character sequence.
14+
- kotlin-codepoints-deluxe
15+
- `CodePoint.toUnicodeNotation()` returns the standard Unicode notation of a code point, e.g. `U+1F4E7`.
16+
- Added `CharSequence.forEachCodePoint()` and `CharSequence.forEachCodePointIndexed()` to iterate over code points in
17+
a character sequence.
1118

1219
## [0.8.0] - 2024-06-09
1320
### Changed

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.8.0")
14+
implementation("de.cketti.unicode:kotlin-codepoints:0.9.0")
1515

1616
// or
1717

1818
// Nice API
19-
implementation("de.cketti.unicode:kotlin-codepoints-deluxe:0.8.0")
19+
implementation("de.cketti.unicode:kotlin-codepoints-deluxe:0.9.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.9.0-SNAPSHOT
2+
VERSION_NAME=0.9.0
33

44
POM_INCEPTION_YEAR=2023
55

0 commit comments

Comments
 (0)