Skip to content

Commit

Permalink
Version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cketti committed Jan 24, 2023
1 parent 2363e53 commit c5be02d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit c5be02d

Please sign in to comment.