Prepare 4.6.2 release

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

View File

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

View File

@ -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

View File

@ -108,7 +108,7 @@ class AsyncDrawableLoaderImpl extends AsyncDrawableLoader {
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());

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,
* which can have a performance penalty (IO)
*
* @since $SNAPSHOT;
* @since 4.6.2
*/
public class DefaultDownScalingMediaDecoder extends MediaDecoder {