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

Commit 0eacba6

Browse files
committed
Prepare and release v2.0.0-alpha02
1. Update version name in config 2. Update readme with latest version name
1 parent 6945b36 commit 0eacba6

File tree

2 files changed

+40
-7
lines changed

2 files changed

+40
-7
lines changed

README.md

Lines changed: 39 additions & 6 deletions
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-alpha01'
78+
implementation 'dev.ahamed.mva2:adapter:2.0.0-alpha02'
7979
}
8080
```
8181

@@ -85,9 +85,9 @@ dependencies {
8585

8686
```gradle
8787
dependencies {
88-
implementation 'dev.ahamed.mva2:ext-databinding:2.0.0-alpha01' // DataBinding
89-
implementation 'dev.ahamed.mva2:ext-decorator:2.0.0-alpha01' // Decorators
90-
implementation 'dev.ahamed.mva2:ext-diffutil-rx:2.0.0-alpha01' // RxDiffUtil
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
9191
}
9292
```
9393

@@ -427,9 +427,42 @@ The library allows you to draw decoration for individual items or sections. You
427427

428428
## Changelog
429429

430-
Current 2.x branch is under heavy development and snapshot builds are released often. Once we hit the stable further changelog will be posted for each release.
430+
### v2.0.0-alpha02
431431

432-
Alternatively, you can visit the project's releases page for older changelog. [(View Releases)](https://github.com/DevAhamed/MultiViewAdapter/releases) Also if you watch this repository, GitHub will send you a notification every time there is an update.
432+
|Type|Stability|Date|
433+
|---|---|---|
434+
|Major|Alpha|31-May-2019|
435+
436+
#### Features added
437+
438+
* Implemented ``onDrawOver`` method inside the decoration api
439+
440+
#### Bug fixes
441+
442+
* Fixed incorrect adapter position being sent to notify while calling ```clearAllSelections()``` method - [Issue](https://github.com/DevAhamed/MultiViewAdapter/issues/75)
443+
* Fixed incorrect 'selection' and 'expansion' behaviour - [Issue](https://github.com/DevAhamed/MultiViewAdapter/issues/72)
444+
445+
#### Behavior Changes
446+
447+
* Pre-defined payload is sent when item's selection/expansion is toggled
448+
* TreeSection decoration behavior is changed
449+
* TreeSection when created, will be either expanded or collapsed by user flag
450+
451+
#### Misc
452+
453+
* Sample app updated is with new showcases for decoration and TreeSection api's
454+
* Automation for app releases is enabled. Now app is pushed to playstore with a git-tag push
455+
* Project contribution guidelines and templates are added
456+
457+
### v2.0.0-alpha01
458+
459+
|Type|Stability|Date|
460+
|---|---|---|
461+
|Major|Alpha|20-April-2019|
462+
463+
* Initial release for v2.x refactor
464+
465+
Alternatively, you can visit the project's releases page for complete changelog. [(View Releases)](https://github.com/DevAhamed/MultiViewAdapter/releases) Also if you watch this repository, GitHub will send you a notification every time there is an update.
433466

434467
---
435468

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

Lines changed: 1 addition & 1 deletion
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 + "-alpha01";
27+
String PRODUCTION_VERSION = VERSION + "-alpha02";
2828
String SNAPSHOT_VERSION = VERSION + "-SNAPSHOT";
2929
int VERSION_CODE = 210200002;
3030

0 commit comments

Comments
 (0)