Prepare 4.6.1 release
This commit is contained in:
parent
eb3a986c48
commit
05cdf2c400
@ -1,6 +1,6 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
# 4.6.1-SNAPSHOT
|
# 4.6.1
|
||||||
|
|
||||||
#### Changed
|
#### Changed
|
||||||
* `core` - `CustomTypefaceSpan` new `mergeStyles` functionality and new factory method([#298])<br>Thanks [@c-b-h]
|
* `core` - `CustomTypefaceSpan` new `mergeStyles` functionality and new factory method([#298])<br>Thanks [@c-b-h]
|
||||||
|
@ -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.1-SNAPSHOT
|
VERSION_NAME=4.6.1
|
||||||
|
|
||||||
GROUP=io.noties.markwon
|
GROUP=io.noties.markwon
|
||||||
POM_DESCRIPTION=Markwon markdown for Android
|
POM_DESCRIPTION=Markwon markdown for Android
|
||||||
|
@ -31,7 +31,7 @@ public class CustomTypefaceSpan extends MetricAffectingSpan {
|
|||||||
* @param mergeStyles control if typeface styles must be merged, for example, if
|
* @param mergeStyles control if typeface styles must be merged, for example, if
|
||||||
* this span (bold) is contained by other span (italic),
|
* this span (bold) is contained by other span (italic),
|
||||||
* {@code mergeStyles=true} would result in bold-italic
|
* {@code mergeStyles=true} would result in bold-italic
|
||||||
* @since $SNAPSHOT;
|
* @since 4.6.1
|
||||||
*/
|
*/
|
||||||
@NonNull
|
@NonNull
|
||||||
public static CustomTypefaceSpan create(@NonNull Typeface typeface, boolean mergeStyles) {
|
public static CustomTypefaceSpan create(@NonNull Typeface typeface, boolean mergeStyles) {
|
||||||
@ -43,7 +43,7 @@ public class CustomTypefaceSpan extends MetricAffectingSpan {
|
|||||||
private final boolean mergeStyles;
|
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
|
* or {@link #create(Typeface, boolean)} factory method
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
@ -51,7 +51,7 @@ public class CustomTypefaceSpan extends MetricAffectingSpan {
|
|||||||
this(typeface, false);
|
this(typeface, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
// @since $SNAPSHOT;
|
// @since 4.6.1
|
||||||
CustomTypefaceSpan(@NonNull Typeface typeface, boolean mergeStyles) {
|
CustomTypefaceSpan(@NonNull Typeface typeface, boolean mergeStyles) {
|
||||||
this.typeface = typeface;
|
this.typeface = typeface;
|
||||||
this.mergeStyles = mergeStyles;
|
this.mergeStyles = mergeStyles;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user