Implement version 2.0.0 #5

Merged
marvinelsen merged 5 commits from develop into main 2024-10-07 18:54:45 +00:00
7 changed files with 10 additions and 10 deletions
Showing only changes of commit a1df9233d3 - Show all commits

View File

@ -1,5 +0,0 @@
package com.marvinelsen.chinese.transliteration
object Zhuyin {
const val SEPARATOR = " "
}

View File

@ -1,4 +1,4 @@
package com.marvinelsen.chinese.transliteration
package com.marvinelsen.chinese.transliteration.api
import java.io.InputStream

View File

@ -1,4 +1,4 @@
package com.marvinelsen.chinese.transliteration
package com.marvinelsen.chinese.transliteration.api
@Suppress("MagicNumber")
enum class Tone {

View File

@ -1,4 +1,4 @@
package com.marvinelsen.chinese.transliteration
package com.marvinelsen.chinese.transliteration.api
enum class TransliterationSystem {
ZHUYIN, PINYIN_WITH_TONE_NUMBERS, PINYIN_WITH_TONE_MARKS

View File

@ -0,0 +1,5 @@
package com.marvinelsen.chinese.transliteration.api
object Zhuyin {
const val SEPARATOR = " "
}

View File

@ -1,4 +1,4 @@
package com.marvinelsen.chinese.transliteration
package com.marvinelsen.chinese.transliteration.api
import io.kotest.core.spec.style.ShouldSpec
import io.kotest.datatest.withData

View File

@ -1,4 +1,4 @@
package com.marvinelsen.chinese.transliteration
package com.marvinelsen.chinese.transliteration.api
import io.kotest.assertions.throwables.shouldThrow
import io.kotest.core.spec.style.ShouldSpec