diff --git a/README.md b/README.md index 165fc6d..6b915ee 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ The library is published to Maven Central. ```kotlin dependencies { - implementation("nl.jacobras:human-readable:1.4.0") + implementation("nl.jacobras:human-readable:1.5.0") } ``` @@ -90,6 +90,7 @@ HumanReadable.timeAgo(instant) // "il y a 3 jours" * Italian * Indonesian * Japanese (since 1.5.0) +* Korean (since 1.5.0) * Polish (since 1.3.0) * Russian * Spanish @@ -104,4 +105,4 @@ Missing a language? Feel free to open an issue about it. Or, add it yourself: 1. Fork the code and navigate to [src/commonMain/libres/strings/](https://github.com/jacobras/Human-Readable/tree/main/src/commonMain/libres/strings) 2. Add a file named `time_units_[LANGUAGE CODE].xml` (see [Unicode: CLDR chart](https://www.unicode.org/cldr/charts/42/supplemental/language_plural_rules.html) for the code & plural categories). 3. If the language deviates from English data units (like French does), also add `data_units_[LANGUAGE CODE].xml`. -4. Open a PR. +4. Open a PR. \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index 74705b6..55ecaf8 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ plugins { } group = "nl.jacobras" -version = "1.4.0" +version = "1.5.0" mavenPublishing { publishToMavenCentral(SonatypeHost.S01, true)