Skip to content

Commit

Permalink
Merge pull request #81 from halilozercan/0.12.0-release
Browse files Browse the repository at this point in the history
Bump version before release
  • Loading branch information
halilozercan authored May 18, 2022
2 parents 47e0b4f + ac5d369 commit cf34f9e
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 4 deletions.
39 changes: 39 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,45 @@
Changelog
=========

v0.11.0
------

_2022_02_09_

* Upgrade Coil to 2.0.0-alpha06 by @msfjarvis in https://github.com/halilozercan/compose-richtext/pull/72

## New Contributors
* @msfjarvis made their first contribution in https://github.com/halilozercan/compose-richtext/pull/72

**Full Changelog**: https://github.com/halilozercan/compose-richtext/compare/v0.10.0...v0.11.0

v0.10.0
------

_2021_12_05_

This release celebrates the release of Compose Multiplatform 1.0.0 🎉🥳

v0.9.0
------

_2021_11_20_

This release is mostly a version bump.
- Jetpack Compose: 1.1.0-beta03
- Jetbrains Compose: 1.0.0-beta5
- Kotlin: 1.5.31

Other changes:

* Fix link formatting in index page of docs by in https://github.com/halilozercan/compose-richtext/pull/60
* CodeBlock fixes in https://github.com/halilozercan/compose-richtext/pull/62
* Update CHANGELOG.md to include releases after the transfer in https://github.com/halilozercan/compose-richtext/pull/64
* Add info panels similar to bootstrap alerts #54 in https://github.com/halilozercan/compose-richtext/pull/63


**Full Changelog**: https://github.com/halilozercan/compose-richtext/compare/v0.8.1...v0.9.0

v0.8.1
------

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ kotlin.code.style=official
systemProp.org.gradle.internal.publish.checksums.insecure=true

GROUP=com.halilibo.compose-richtext
VERSION_NAME=0.11.0
VERSION_NAME=0.12.0

POM_DESCRIPTION=A collection of Compose libraries for advanced text formatting and alternative display types.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ package com.halilibo.richtext.markdown

import androidx.compose.foundation.text.BasicText
import androidx.compose.runtime.Composable
import androidx.compose.runtime.LaunchedEffect
import androidx.compose.runtime.SideEffect
import androidx.compose.runtime.DisposableEffect

@Composable
internal actual fun HtmlBlock(content: String) {
LaunchedEffect(Unit) {
DisposableEffect(Unit) {
println("Html blocks are rendered literally in Compose Desktop!")
onDispose { }
}
BasicText(content)
}

0 comments on commit cf34f9e

Please sign in to comment.