Skip to content

Commit

Permalink
Releasing 3.0.1; Fix #229
Browse files Browse the repository at this point in the history
  • Loading branch information
sockeqwe committed Mar 29, 2017
1 parent 925e7c9 commit 0729cd9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ Check the [project website](http://hannesdorfmann.com/mosby/) for more informati
```groovy
dependencies {
compile 'com.hannesdorfmann.mosby3:mvi:3.0.0' // Model-View-Intent
compile 'com.hannesdorfmann.mosby3:mvi:3.0.1' // Model-View-Intent
// or
compile 'com.hannesdorfmann.mosby3:mvp:3.0.0' // Plain MVP
compile 'com.hannesdorfmann.mosby3:mvp:3.0.1' // Plain MVP
// or
compile 'com.hannesdorfmann.mosby3:viewstate:3.0.0' // MVP ViewState support
compile 'com.hannesdorfmann.mosby3:viewstate:3.0.1' // MVP ViewState support
}
```
Additional modules:
Expand All @@ -24,24 +24,24 @@ Additional modules:
dependencies {
// MVP + ViewState + LCE Views
compile 'com.hannesdorfmann.mosby3:mvp-lce:3.0.0'
compile 'com.hannesdorfmann.mosby3:mvp-lce:3.0.1'
// Null Object Presenter for MVP
compile 'com.hannesdorfmann.mosby3:mvp-nullobject-presenter:3.0.0'
compile 'com.hannesdorfmann.mosby3:mvp-nullobject-presenter:3.0.1'
}
```

SNAPSHOT:
```groovy
dependencies {
compile 'com.hannesdorfmann.mosby3:mvi:3.0.1-SNAPSHOT'
compile 'com.hannesdorfmann.mosby3:mvi:3.0.2-SNAPSHOT'
compile 'com.hannesdorfmann.mosby3:mvp:3.0.1-SNAPSHOT'
compile 'com.hannesdorfmann.mosby3:viewstate:3.0.1-SNAPSHOT'
compile 'com.hannesdorfmann.mosby3:mvp:3.0.2-SNAPSHOT'
compile 'com.hannesdorfmann.mosby3:viewstate:3.0.2-SNAPSHOT'
compile 'com.hannesdorfmann.mosby3:mvp-lce:3.0.1-SNAPSHOT'
compile 'com.hannesdorfmann.mosby3:mvp-nullobject-presenter:3.0.1-SNAPSHOT'
compile 'com.hannesdorfmann.mosby3:mvp-lce:3.0.2-SNAPSHOT'
compile 'com.hannesdorfmann.mosby3:mvp-nullobject-presenter:3.0.2-SNAPSHOT'
}
```

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryErro
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

VERSION_NAME=3.0.1-SNAPSHOT
VERSION_CODE=301
VERSION_NAME=3.0.2-SNAPSHOT
VERSION_CODE=302
GROUP=com.hannesdorfmann.mosby3

POM_DESCRIPTION=A Model-View-Presenter library for Android apps
Expand Down

0 comments on commit 0729cd9

Please sign in to comment.