Skip to content

Commit

Permalink
Merge pull request #14 from uploadcare/dev
Browse files Browse the repository at this point in the history
Release 2.0.0
  • Loading branch information
raphaelnew authored Apr 10, 2019
2 parents a35f52d + dcd01f8 commit ca31fb0
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# History
## 1.0.6
## 2.0.0
- Example: Update dependencies, rewrite example to Kotlin.
- Widget: Update dependencies, rewrite widget to Kotlin, Fixes, Add "Google Photos" support.
- Library: Update dependencies, rewrite library to Kotlin, Fixes, Add support for API v0.5
Expand Down
4 changes: 2 additions & 2 deletions example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
applicationId "com.uploadcare.android.example"
minSdkVersion versions.min_sdk
targetSdkVersion versions.target_sdk
versionCode 2
versionName "1.0.6"
versionCode 3
versionName "2.0.0"
}

dataBinding {
Expand Down
2 changes: 1 addition & 1 deletion library/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Latest stable version is available from jCenter.
To include it in your Android project, add this to the gradle.build file:

```
implementation 'com.uploadcare.android.library:uploadcare-android:1.0.6'
implementation 'com.uploadcare.android.library:uploadcare-android:2.0.0'
```

Expand Down
6 changes: 3 additions & 3 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
defaultConfig {
minSdkVersion versions.min_sdk
targetSdkVersion versions.target_sdk
versionCode 6
versionName "1.0.6"
versionCode 7
versionName "2.0.0"
}

androidExtensions {
Expand Down Expand Up @@ -59,7 +59,7 @@ publish {
userOrg = properties.containsKey('bintray.user') ? properties.getProperty("bintray.user") : System.getenv('BINTRAY_USER')
groupId = 'com.uploadcare.android.library'
artifactId = 'uploadcare-android'
publishVersion = '1.0.6'
publishVersion = '2.0.0'
desc = 'Android client library for the Uploadcare API.'
licences = ["Apache-2.0"]
website = 'https://github.com/uploadcare/uploadcare-android'
Expand Down
2 changes: 1 addition & 1 deletion widget/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Latest stable version is available from jCenter.
To include it in your Android project, add this to the gradle.build file:

```
implementation 'com.uploadcare.android.widget:uploadcare-android-widget:1.0.6'
implementation 'com.uploadcare.android.widget:uploadcare-android-widget:2.0.0'
```

Expand Down
6 changes: 3 additions & 3 deletions widget/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
defaultConfig {
minSdkVersion versions.min_sdk
targetSdkVersion versions.target_sdk
versionCode 5
versionName "1.0.6"
versionCode 6
versionName "2.0.0"
}

dataBinding {
Expand Down Expand Up @@ -77,7 +77,7 @@ publish {
userOrg = properties.containsKey('bintray.user') ? properties.getProperty("bintray.user") : System.getenv('BINTRAY_USER')
groupId = 'com.uploadcare.android.widget'
artifactId = 'uploadcare-android-widget'
publishVersion = '1.0.6'
publishVersion = '2.0.0'
desc = 'Android client library for the Uploadcare API.'
licences = ["Apache-2.0"]
website = 'https://github.com/uploadcare/uploadcare-android'
Expand Down

0 comments on commit ca31fb0

Please sign in to comment.