From 6f8b8e71f57ffd9b25cc02f99a301b4f06550f77 Mon Sep 17 00:00:00 2001 From: Dimitry Ivanov Date: Tue, 9 Feb 2021 01:20:53 +0300 Subject: [PATCH] Prepare 4.6.2 release --- CHANGELOG.md | 2 +- gradle.properties | 2 +- .../java/io/noties/markwon/image/AsyncDrawableLoaderImpl.java | 2 +- .../io/noties/markwon/image/DefaultDownScalingMediaDecoder.java | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1713a4ed..f01d17f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -# Snapshot +# 4.6.2 #### Added * `image` - `DefaultDownScalingMediaDecoder` which scales displayed images down ([#329]) diff --git a/gradle.properties b/gradle.properties index 78c2b1f6..f7ef5b5d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ android.enableJetifier=true android.enableBuildCache=true android.buildCacheDir=build/pre-dex-cache -VERSION_NAME=4.6.2-SNAPSHOT +VERSION_NAME=4.6.2 GROUP=io.noties.markwon POM_DESCRIPTION=Markwon markdown for Android diff --git a/markwon-image/src/main/java/io/noties/markwon/image/AsyncDrawableLoaderImpl.java b/markwon-image/src/main/java/io/noties/markwon/image/AsyncDrawableLoaderImpl.java index 56a7add1..0909c02a 100644 --- a/markwon-image/src/main/java/io/noties/markwon/image/AsyncDrawableLoaderImpl.java +++ b/markwon-image/src/main/java/io/noties/markwon/image/AsyncDrawableLoaderImpl.java @@ -108,7 +108,7 @@ public void run() { final ImageItem.WithDecodingNeeded withDecodingNeeded = imageItem.getAsWithDecodingNeeded(); - // @since $SNAPSHOT; close input stream + // @since 4.6.2 close input stream try { MediaDecoder mediaDecoder = mediaDecoders.get(withDecodingNeeded.contentType()); diff --git a/markwon-image/src/main/java/io/noties/markwon/image/DefaultDownScalingMediaDecoder.java b/markwon-image/src/main/java/io/noties/markwon/image/DefaultDownScalingMediaDecoder.java index 9ac9729a..7180a277 100644 --- a/markwon-image/src/main/java/io/noties/markwon/image/DefaultDownScalingMediaDecoder.java +++ b/markwon-image/src/main/java/io/noties/markwon/image/DefaultDownScalingMediaDecoder.java @@ -29,7 +29,7 @@ * NB this media decoder will create a temporary file for each incoming media resource, * which can have a performance penalty (IO) * - * @since $SNAPSHOT; + * @since 4.6.2 */ public class DefaultDownScalingMediaDecoder extends MediaDecoder {