Skip to content

Commit

Permalink
Update Library/Widget/Example to version to 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelnew committed Aug 30, 2019
1 parent a06733e commit 7d853e9
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 11 deletions.
8 changes: 7 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# History
## 2.1.0
- Example:
- Update Widget/Library versions
- Widget:
- Update Library version
- Library:
- Fix batch store/delete calls support more than 100 Files

## 2.0.1
- Example:
Expand All @@ -14,7 +21,6 @@
- Set default UploadcareClient auth method to HMAC-based
- Fix: "Project" data model, now **UploadcareClient.getProject()** and **UploadcareClient.getProjectAsync()** work properly
- Internal network layer optimizations and improvements


## 2.0.0
- Example: Update dependencies, rewrite example to Kotlin.
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 4
versionName "2.0.1"
versionCode 5
versionName "2.1.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:2.0.1'
implementation 'com.uploadcare.android.library:uploadcare-android:2.1.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 8
versionName "2.0.1"
versionCode 9
versionName "2.1.0"
}

androidExtensions {
Expand Down Expand Up @@ -63,7 +63,7 @@ publish {
userOrg = properties.containsKey('bintray.user') ? properties.getProperty("bintray.user") : ""
groupId = 'com.uploadcare.android.library'
artifactId = 'uploadcare-android'
publishVersion = '2.0.1'
publishVersion = '2.1.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:2.0.1'
implementation 'com.uploadcare.android.widget:uploadcare-android-widget:2.1.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 7
versionName "2.0.1"
versionCode 8
versionName "2.1.0"
}

dataBinding {
Expand Down Expand Up @@ -81,7 +81,7 @@ publish {
userOrg = properties.containsKey('bintray.user') ? properties.getProperty("bintray.user") : ""
groupId = 'com.uploadcare.android.widget'
artifactId = 'uploadcare-android-widget'
publishVersion = '2.0.1'
publishVersion = '2.1.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 7d853e9

Please sign in to comment.