Skip to content

Commit

Permalink
Bump up app version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kejunxia committed Sep 17, 2015
1 parent 736f0ee commit b84a5c2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions ChangeLog.md
@@ -1,3 +1,8 @@
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.
* Improve exception handling in library poke.

Version: 1.1.9
Fix bug
* When a recovering fragment in view pager its onViewReady is not called when its holding activity resume by popping out from another above activity.
Expand Down
4 changes: 2 additions & 2 deletions README.md
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.1.9</version>
<version>1.2.0</version>
</dependency>
```

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

## Dependency injection with reference count
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Expand Up @@ -74,8 +74,8 @@ ext {
gitUrl = 'https://github.com/kejunxia/AndroidMvc.git' // Git repository URL
version = [
major: 1,
minor: 1,
patch : 10
minor: 2,
patch : 0
]
libGroup = 'com.shipdream'
libVersion = "${version.major}.${version.minor}.${version.patch}"
Expand Down
4 changes: 2 additions & 2 deletions documents/sites/Site-MarkDown.md
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.1.9</version>
<version>1.2.0</version>
</dependency>
```

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

## Samples
Expand Down

0 comments on commit b84a5c2

Please sign in to comment.