diff --git a/CHANGELOG.md b/CHANGELOG.md index bdbbfb5..1d55958 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ Change Log ========== +## Version 0.9.4 + +_2024-01-24_ + +Bug fixes: +- Fix incorrect number of line breaks around empty blocks and paragraphs +- Fix incorrect block indentation after nested block. + +This release depends on: +- Kotlin **1.9.21** +- Compose Multiplatform **1.5.11** (Jetpack Compose UI **1.5.4**) + ## Version 0.9.3 _2024-01-22_ diff --git a/README.md b/README.md index 6eba034..b62a151 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Add the dependency to your **module**'s `build.gradle` or `build.gradle.kts` fil ```kotlin dependencies { - implementation("be.digitalia.compose.htmlconverter:htmlconverter:0.9.3") + implementation("be.digitalia.compose.htmlconverter:htmlconverter:0.9.4") } ``` @@ -34,7 +34,7 @@ For Kotlin Multiplatform projects: sourceSets { val commonMain by getting { dependencies { - implementation("be.digitalia.compose.htmlconverter:htmlconverter:0.9.3") + implementation("be.digitalia.compose.htmlconverter:htmlconverter:0.9.4") } } } diff --git a/gradle.properties b/gradle.properties index 252cb0f..5802458 100644 --- a/gradle.properties +++ b/gradle.properties @@ -22,7 +22,7 @@ SONATYPE_CLOSE_TIMEOUT_SECONDS=1500 RELEASE_SIGNING_ENABLED=true GROUP=be.digitalia.compose.htmlconverter -VERSION_NAME=0.9.3 +VERSION_NAME=0.9.4 POM_DESCRIPTION=HTML Converter for Compose POM_URL=https://github.com/cbeyls/HtmlConverterCompose