Skip to content
This repository has been archived by the owner on Jul 2, 2021. It is now read-only.

Commit

Permalink
Prepare 0.11.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kaloyan-raev committed Aug 29, 2019
1 parent 1845704 commit a86b7c5
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 @@ -17,7 +17,7 @@ Add the Gradle dependency to the `build.gradle` file of the app module:

```Gradle
dependencies {
implementation 'io.storj:libstorj-android-v3:0.10.0'
implementation 'io.storj:libstorj-android-v3:0.11.0'
}
```

Expand Down
10 changes: 5 additions & 5 deletions android-libstorj/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
defaultConfig {
minSdkVersion 21
targetSdkVersion 26
versionCode 14
versionName "0.10.0"
versionCode 15
versionName "0.11.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand All @@ -30,10 +30,10 @@ buildscript {
}

publish {
userOrg = 'kaloyan-raev'
userOrg = 'storj'
groupId = 'io.storj'
artifactId = 'libstorj-android-v3'
publishVersion = '0.10.0'
publishVersion = '0.11.0'
desc = 'Libstorj for Android (Storj V3 compatible)'
website = 'https://github.com/storj/android-libstorj'
}
Expand All @@ -42,5 +42,5 @@ dependencies {
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'io.storj:libuplink-android:0.2'
implementation 'io.storj:libuplink-android:0.6'
}
4 changes: 2 additions & 2 deletions android-libstorj/src/main/java/io/storj/libstorj/Storj.java
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ public int verifyKeys(Keys keys) throws InterruptedException {
runInProject(new ProjectRunnable() {
@Override
public void run(Project project) throws Exception {
project.listBuckets("", 2, 1);
project.listBuckets("", 1);
}
});
} catch (Exception e) {
Expand Down Expand Up @@ -1751,7 +1751,7 @@ public void run(Project project) throws Exception {
String cursor = "";

do {
BucketList bucketList = project.listBuckets(cursor, 2, 0);
BucketList bucketList = project.listBuckets(cursor, 0);
for (int i = 0; i < bucketList.length(); i++) {
BucketInfo info = bucketList.item(i);
buckets.add(new Bucket(info.getName(), info.getName(),
Expand Down

0 comments on commit a86b7c5

Please sign in to comment.