Skip to content
This repository was archived by the owner on Jan 2, 2021. It is now read-only.

Commit 4c940ec

Browse files
authored
Prepare and release v2.0.0-beta01 (#91)
1. Update version name in config 2. Add changelog to readme and update version name
1 parent a37ac2e commit 4c940ec

File tree

2 files changed

+25
-5
lines changed

2 files changed

+25
-5
lines changed

README.md

+24-4
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ The library is available via JCenter. JCenter is the default maven repository us
7575

7676
```gradle
7777
dependencies {
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
8787
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
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|

buildSrc/src/main/java/gradle/Config.java

+1-1
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)