Prepare 4.6.2 release

This commit is contained in:
Dimitry Ivanov 2021-02-09 01:20:53 +03:00
parent 50b3168491
commit 606e65a135
4 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
# Changelog # Changelog
# Snapshot # 4.6.2
#### Added #### Added
* `image` - `DefaultDownScalingMediaDecoder` which scales displayed images down ([#329]) * `image` - `DefaultDownScalingMediaDecoder` which scales displayed images down ([#329])

View File

@ -8,7 +8,7 @@ android.enableJetifier=true
android.enableBuildCache=true android.enableBuildCache=true
android.buildCacheDir=build/pre-dex-cache android.buildCacheDir=build/pre-dex-cache
VERSION_NAME=4.6.2-SNAPSHOT VERSION_NAME=4.6.2
GROUP=io.noties.markwon GROUP=io.noties.markwon
POM_DESCRIPTION=Markwon markdown for Android POM_DESCRIPTION=Markwon markdown for Android

View File

@ -108,7 +108,7 @@ class AsyncDrawableLoaderImpl extends AsyncDrawableLoader {
final ImageItem.WithDecodingNeeded withDecodingNeeded = imageItem.getAsWithDecodingNeeded(); final ImageItem.WithDecodingNeeded withDecodingNeeded = imageItem.getAsWithDecodingNeeded();
// @since $SNAPSHOT; close input stream // @since 4.6.2 close input stream
try { try {
MediaDecoder mediaDecoder = mediaDecoders.get(withDecodingNeeded.contentType()); MediaDecoder mediaDecoder = mediaDecoders.get(withDecodingNeeded.contentType());

View File

@ -29,7 +29,7 @@ import java.util.Collections;
* <strong>NB</strong> this media decoder will create a temporary file for each incoming media resource, * <strong>NB</strong> this media decoder will create a temporary file for each incoming media resource,
* which can have a performance penalty (IO) * which can have a performance penalty (IO)
* *
* @since $SNAPSHOT; * @since 4.6.2
*/ */
public class DefaultDownScalingMediaDecoder extends MediaDecoder { public class DefaultDownScalingMediaDecoder extends MediaDecoder {