Update CHANGELOG

This commit is contained in:
Dimitry Ivanov 2019-11-14 15:27:39 +03:00
parent 6b9e79ce5e
commit d6fe069728
3 changed files with 8 additions and 1 deletions

View File

@ -2,6 +2,8 @@
# 4.2.0-SNAPSHOT
* `MarkwonEditor` to highlight markdown input whilst editing (new module: `markwon-editor`)
* `CoilImagesPlugin` image loader based on [Coil] library (new module: `markwon-image-coil`) ([#166], [#174])
<br>Thanks to [@tylerbwong]
* `Markwon#configuration` method to expose `MarkwonConfiguration` via public API
* `HeadingSpan#getLevel` getter
* Add `SvgPictureMediaDecoder` in `image` module to deal with SVG without dimensions ([#165])
@ -9,7 +11,11 @@
* `LinkifyPlugin` applies link span that is configured by `Markwon` (obtain via span factory)
* `LinkifyPlugin` is thread-safe
[@tylerbwong]: https://github.com/tylerbwong
[Coil]: https://github.com/coil-kt/coil
[#165]: https://github.com/noties/Markwon/issues/165
[#166]: https://github.com/noties/Markwon/issues/166
[#174]: https://github.com/noties/Markwon/pull/174
# 4.1.2
* Do not re-use RenderProps when creating a new visitor (fixes [#171])

View File

@ -102,6 +102,7 @@ module.exports = {
'/docs/v4/ext-tasklist/',
'/docs/v4/html/',
'/docs/v4/image/',
'/docs/v4/image-coil/',
'/docs/v4/image-glide/',
'/docs/v4/image-picasso/',
'/docs/v4/linkify/',

View File

@ -29,8 +29,8 @@ import io.noties.markwon.image.DrawableUtils;
import io.noties.markwon.image.ImageSpanFactory;
/**
* @since 4.0.0
* @author Tyler Wong
* @since 4.2.0-SNAPSHOT
*/
public class CoilImagesPlugin extends AbstractMarkwonPlugin {