diff --git a/CHANGELOG.md b/CHANGELOG.md index 7464dc5d..005a79c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -# 4.6.1-SNAPSHOT +# 4.6.1 #### Changed * `core` - `CustomTypefaceSpan` new `mergeStyles` functionality and new factory method([#298])
Thanks [@c-b-h] diff --git a/gradle.properties b/gradle.properties index 4496b270..ea77f9f8 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.1-SNAPSHOT +VERSION_NAME=4.6.1 GROUP=io.noties.markwon POM_DESCRIPTION=Markwon markdown for Android diff --git a/markwon-core/src/main/java/io/noties/markwon/core/spans/CustomTypefaceSpan.java b/markwon-core/src/main/java/io/noties/markwon/core/spans/CustomTypefaceSpan.java index 68bbc829..6994304b 100644 --- a/markwon-core/src/main/java/io/noties/markwon/core/spans/CustomTypefaceSpan.java +++ b/markwon-core/src/main/java/io/noties/markwon/core/spans/CustomTypefaceSpan.java @@ -31,7 +31,7 @@ public static CustomTypefaceSpan create(@NonNull Typeface typeface) { * @param mergeStyles control if typeface styles must be merged, for example, if * this span (bold) is contained by other span (italic), * {@code mergeStyles=true} would result in bold-italic - * @since $SNAPSHOT; + * @since 4.6.1 */ @NonNull public static CustomTypefaceSpan create(@NonNull Typeface typeface, boolean mergeStyles) { @@ -43,7 +43,7 @@ public static CustomTypefaceSpan create(@NonNull Typeface typeface, boolean merg private final boolean mergeStyles; /** - * @deprecated $SNAPSHOT; use {{@link #create(Typeface)}} + * @deprecated 4.6.1 use {{@link #create(Typeface)}} * or {@link #create(Typeface, boolean)} factory method */ @Deprecated @@ -51,7 +51,7 @@ public CustomTypefaceSpan(@NonNull Typeface typeface) { this(typeface, false); } - // @since $SNAPSHOT; + // @since 4.6.1 CustomTypefaceSpan(@NonNull Typeface typeface, boolean mergeStyles) { this.typeface = typeface; this.mergeStyles = mergeStyles;