Skip to content

Commit

Permalink
Bump version to 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmike committed Jan 7, 2016
1 parent 79eb834 commit eea3fb4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
}
dependencies {
compile 'com.github.mrmike:Ok2Curl:0.0.4'
compile 'com.github.mrmike:Ok2Curl:0.1.0'
}
```

Expand Down
6 changes: 3 additions & 3 deletions ok2curl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'

group='com.github.mrmike'
version='0.0.4'
version='0.1.0'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
buildToolsVersion "23.0.2"

defaultConfig {
minSdkVersion 14
targetSdkVersion 23
versionCode 4
versionName "0.0.4"
versionName "0.1.0"
}
buildTypes {
release {
Expand Down
8 changes: 4 additions & 4 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
buildToolsVersion "23.0.2"

defaultConfig {
applicationId "com.moczul.sample"
Expand All @@ -27,19 +27,19 @@ dependencies {
compile project(':ok2curl')

/**
* compile 'com.github.mrmike:Ok2Curl:0.0.4'
* compile 'com.github.mrmike:Ok2Curl:0.1.0'
*/

/**
* Ok2Curl is packed with the latest version of OkHttp. If you already have OkHttp declared in
* your dependencies or want to use different version simply add exclude module.
*
* compile ('com.github.mrmike:Ok2Curl:0.0.4') {
* compile ('com.github.mrmike:Ok2Curl:0.1.0') {
* exclude module: 'okhttp'
* }
*/

compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:appcompat-v7:23.1.1'

testCompile 'junit:junit:4.12'
}

0 comments on commit eea3fb4

Please sign in to comment.