Skip to content

Commit

Permalink
[*] bumped up the version and released v2.1.0-17
Browse files Browse the repository at this point in the history
  • Loading branch information
nisrulz committed Jul 12, 2016
1 parent b2b56dd commit f7d750d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Starting with `1.1.8`, Changes exist in the [releases tab](https://github.com/ni
# Including in your project
- EasyDeviceInfo is available in the MavenCentral, so getting it as simple as adding it as a dependency
```gradle
compile 'com.github.nisrulz:easydeviceinfo:2.0.2'
compile 'com.github.nisrulz:easydeviceinfo:2.1.0'
```

# Usage Docs/Wiki
Expand Down
4 changes: 2 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ android {
defaultConfig {
minSdkVersion 9
targetSdkVersion 24
versionCode 16
versionName "2.0.2"
versionCode 17
versionName "2.1.0"
}

lintOptions {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ public class EasyDeviceInfo {
* @return the library version
*/
public final String getLibraryVersion() {
String version = "v2.0.2";
int versionCode = 16;
String version = "v2.1.0";
int versionCode = 17;
return name + " : " + version + " [build-" + versionCode + "]";
}
}

0 comments on commit f7d750d

Please sign in to comment.