This repository was archived by the owner on Jan 2, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +25
-5
lines changed
buildSrc/src/main/java/gradle Expand file tree Collapse file tree 2 files changed +25
-5
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ The library is available via JCenter. JCenter is the default maven repository us
7575
7676``` gradle
7777dependencies {
78- implementation 'dev.ahamed.mva2:adapter:2.0.0-alpha02 '
78+ implementation 'dev.ahamed.mva2:adapter:2.0.0-beta01 '
7979}
8080```
8181
@@ -85,9 +85,9 @@ dependencies {
8585
8686``` gradle
8787dependencies {
88- implementation 'dev.ahamed.mva2:ext-databinding:2.0.0-alpha02 ' // DataBinding
89- implementation 'dev.ahamed.mva2:ext-decorator:2.0.0-alpha02 ' // Decorators
90- implementation 'dev.ahamed.mva2:ext-diffutil-rx:2.0.0-alpha02 ' // RxDiffUtil
88+ implementation 'dev.ahamed.mva2:ext-databinding:2.0.0-beta01 ' // DataBinding
89+ implementation 'dev.ahamed.mva2:ext-decorator:2.0.0-beta01 ' // Decorators
90+ implementation 'dev.ahamed.mva2:ext-diffutil-rx:2.0.0-beta01 ' // RxDiffUtil
9191}
9292```
9393
@@ -427,6 +427,26 @@ The library allows you to draw decoration for individual items or sections. You
427427
428428## Changelog
429429
430+ ### v2.0.0-beta01
431+
432+ | Type| Stability| Date|
433+ | ---| ---| ---|
434+ | Major| Beta| 3-July-2019|
435+
436+ All public API's are finalized for v2.0.0 release, only bug fixes will be added in further beta's.
437+
438+ #### Features added
439+
440+ * Added `` OnItemClickListener `` method inside the ItemSection class.
441+
442+ #### Bug fixes
443+
444+ * Fixed NPE thrown by ItemSection when the item is null and expansion/selection is toggled.
445+
446+ #### Behavior Changes
447+
448+ * HeaderSection is has been changed to host ItemSection and NestedSection. Previously it was hosting ItemSection and ListSection.
449+
430450### v2.0.0-alpha02
431451
432452| Type| Stability| Date|
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ public interface Config {
2424
2525 String VERSION = "2.0.0" ;
2626 String APP_VERSION = VERSION + ".1" ;
27- String PRODUCTION_VERSION = VERSION + "-alpha02 " ;
27+ String PRODUCTION_VERSION = VERSION + "-beta01 " ;
2828 String SNAPSHOT_VERSION = VERSION + "-SNAPSHOT" ;
2929 int VERSION_CODE = 210200002 ;
3030
You can’t perform that action at this time.
0 commit comments