This repository was archived by the owner on Jan 2, 2021. It is now read-only.
File tree 2 files changed +25
-5
lines changed
buildSrc/src/main/java/gradle
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
75
75
76
76
``` gradle
77
77
dependencies {
78
- implementation 'dev.ahamed.mva2:adapter:2.0.0-alpha02 '
78
+ implementation 'dev.ahamed.mva2:adapter:2.0.0-beta01 '
79
79
}
80
80
```
81
81
@@ -85,9 +85,9 @@ dependencies {
85
85
86
86
``` gradle
87
87
dependencies {
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
91
91
}
92
92
```
93
93
@@ -427,6 +427,26 @@ The library allows you to draw decoration for individual items or sections. You
427
427
428
428
## Changelog
429
429
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
+
430
450
### v2.0.0-alpha02
431
451
432
452
| Type| Stability| Date|
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ public interface Config {
24
24
25
25
String VERSION = "2.0.0" ;
26
26
String APP_VERSION = VERSION + ".1" ;
27
- String PRODUCTION_VERSION = VERSION + "-alpha02 " ;
27
+ String PRODUCTION_VERSION = VERSION + "-beta01 " ;
28
28
String SNAPSHOT_VERSION = VERSION + "-SNAPSHOT" ;
29
29
int VERSION_CODE = 210200002 ;
30
30
You can’t perform that action at this time.
0 commit comments