Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Version: 1.2.1
* Fix issue that MvcFragment and MvcDialogFragment post V2V events to C2V event bus.

Version: 1.2.0
* MvcGraph.inject throws runtime exception - MvcGraphException now. So no need to catch poke exceptions any more.
* MvcGraph.get method to get an instance. It provides cached instance if there is already an existing one, otherwise the newly created instance.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ The library is currently release to jCenter and MavenCentral
<dependency>
<groupId>com.shipdream</groupId>
<artifactId>android-mvc</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</dependency>
```

**Gradle:**
```groovy
compile "com.shipdream:android-mvc:1.2.0"
compile "com.shipdream:android-mvc:1.2.1"
```

## Dependency injection with reference count
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ ext {
version = [
major: 1,
minor: 2,
patch : 0
patch : 1
]
libGroup = 'com.shipdream'
libVersion = "${version.major}.${version.minor}.${version.patch}"
Expand Down
4 changes: 2 additions & 2 deletions documents/sites/Site-MarkDown.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ The library is currently release to jCenter and MavenCentral
<dependency>
<groupId>com.shipdream</groupId>
<artifactId>android-mvc</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</dependency>
```

**Gradle:**
```groovy
compile "com.shipdream:android-mvc:1.2.0"
compile "com.shipdream:android-mvc:1.2.1"
```

## Samples
Expand Down