diff --git a/CHANGELOG.md b/CHANGELOG.md index 91e44cd..90bfae5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +### v0.3.1 + +- Reduced methods +- Add nullability annotations + ### v0.3 - Add missing spans diff --git a/README.md b/README.md index a046f8d..d96f1a4 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ This lib provides simple and fluent API for creating [Android Spannable](https:/ Features: - Simple and fluent API - Helpers to create spans -- Small method footprint (<200 methods, 24kb AAR package) +- Small method footprint (<200 methods, 28kb AAR package) This library focuses on building spannable. If you prefer put full text first and then apply spans, take a look at [another awesome library](https://github.com/jaychang0917/SimpleText) @@ -75,6 +75,8 @@ val spannable = Spanner("The quick brown fox jumps over the lazy dog") Spans: +| | | | +| --- | --- | --- | | sizePx(int) | background(int color) | center() | | sizeDP(int) | foreground(int color) | alignmentOpposite() | | scaleSize(float) | subscript() | alignmentNormal() | @@ -106,7 +108,7 @@ Text manipulation: } dependencies { - compile 'lt.neworld:spanner:v0.3' + compile 'lt.neworld:spanner:v0.3.1' } ```