Skip to content

Commit

Permalink
[docs] update readme, migration guide and changelog after releases
Browse files Browse the repository at this point in the history
 releases 2.0.3 & 2.0.4
  • Loading branch information
mkoslacz committed Jul 27, 2017
1 parent c0abffc commit 7994cd8
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 12 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,19 @@
## 2.0.4

### Fix

* ViperButterKnifeFragments (all):
- missing views unbinding added.


## 2.0.3

### Enhancement

* ViperAiViewHolder and ViperAiPassiveViewHolder:
- `bindViews()` method added to ease recycling views management and separate view creation and view binding logic. Although it is not necessary to migrate to it from the regular `injectViews` it is strongly recommended for performance purposes.


## 2.0.2

### Breaking change
Expand Down
8 changes: 8 additions & 0 deletions MIGRATION_GUIDE.md
@@ -1,3 +1,11 @@
# 2.0.3 to 2.0.4

*No changes needed*

# 2.0.2 to 2.0.3

*No changes needed although migrating to splitted `injectViews()` and `bindViews()` in ViperAiViewHolder and ViperAiPassiveViewHolder is strongly recommended (see methods docs).*

# 2.0.1 to 2.0.2

From now IPC methods do not operate by default on a particular `Scheduler`. Please review your IPC streams, as in some cases this may be a breaking change.
Expand Down
24 changes: 12 additions & 12 deletions README.md
Expand Up @@ -23,34 +23,34 @@ Import the selected Moviper modules to your module gradle file. Moviper-rx 2.x.x
```groovy
dependencies {
// core modules, in the most common scenario importing one of these two will be enough
compile 'com.mateuszkoslacz.moviper:moviper-rx:2.0.2' // RxJava communication based Moviper core (recommended)
compile 'com.mateuszkoslacz.moviper:moviper-callbacks:2.0.2' // callbacks communication based Moviper core
compile 'com.mateuszkoslacz.moviper:moviper-rx:2.0.4' // RxJava communication based Moviper core (recommended)
compile 'com.mateuszkoslacz.moviper:moviper-callbacks:2.0.4' // callbacks communication based Moviper core
// Mosby's viewstate Moviper views
compile 'com.mateuszkoslacz.moviper:moviper-viewstate:2.0.2'
compile 'com.mateuszkoslacz.moviper:moviper-viewstate:2.0.4'
// Butterknife Moviper views
compile 'com.mateuszkoslacz.moviper:moviper-butterknife:2.0.2'
compile 'com.mateuszkoslacz.moviper:moviper-butterknife:2.0.4'
// Butterknife Moviper views with Mosby's viewstate
compile 'com.mateuszkoslacz.moviper:moviper-butterknife-viewstate:2.0.2'
compile 'com.mateuszkoslacz.moviper:moviper-butterknife-viewstate:2.0.4'
// Databinding Moviper Views
compile 'com.mateuszkoslacz.moviper:moviper-databinding:2.0.2'
compile 'com.mateuszkoslacz.moviper:moviper-databinding:2.0.4'
// Databinding Moviper Views Mosby's viewstate
compile 'com.mateuszkoslacz.moviper:moviper-databinding-viewstate:2.0.2'
compile 'com.mateuszkoslacz.moviper:moviper-databinding-viewstate:2.0.4'
// Recyclerview Moviper extension, allows you create the Viper classes set for every RecyclerVew cell
compile 'com.mateuszkoslacz.moviper:moviper-recyclerview:2.0.2'
compile 'com.mateuszkoslacz.moviper:moviper-recyclerview:2.0.4'
// Butterknife Moviper Recyclerview cells
compile 'com.mateuszkoslacz.moviper:moviper-recyclerview-butterknife:2.0.2'
compile 'com.mateuszkoslacz.moviper:moviper-recyclerview-butterknife:2.0.4'
// Databinding Moviper Recyclerview cells
compile 'com.mateuszkoslacz.moviper:moviper-recyclerview-databinding:2.0.2'
compile 'com.mateuszkoslacz.moviper:moviper-recyclerview-databinding:2.0.4'
// Android Service Moviper extensions
compile 'com.mateuszkoslacz.moviper:moviper-service:2.0.2'
compile 'com.mateuszkoslacz.moviper:moviper-service:2.0.4'
// optional testing utils, still beta, it has to be debug-compiled and causes some minor Manifest issues on debug builds
debugCompile 'com.mateuszkoslacz.moviper:moviper-test:2.0.2'
debugCompile 'com.mateuszkoslacz.moviper:moviper-test:2.0.4'
}
```

Expand Down

0 comments on commit 7994cd8

Please sign in to comment.