Skip to content

Commit 0741c2a

Browse files
committed
update version before release
1 parent 01068db commit 0741c2a

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

android-sdk/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ allprojects {
3030
}
3131

3232
ext {
33-
sdkVersion = "6.4.5"
33+
sdkVersion = "6.4.6"
3434
supportLibVersion = "26.1.0"
3535
fastjsonVersion = "1.1.71.android"
3636
converterVersion = "2.1.0"

android-sdk/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ org.gradle.jvmargs=-Xmx1536m
1515
# This option should only be used with decoupled projects. More details, visit
1616
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1717
# org.gradle.parallel=true
18-
VERSION_NAME=6.4.5
18+
VERSION_NAME=6.4.6
1919
VERSION_CODE=2695
2020
GROUP=cn.leancloud
2121

core/src/main/java/cn/leancloud/AVObject.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
import io.reactivex.Observable;
2727
import io.reactivex.ObservableSource;
2828
import io.reactivex.Observer;
29-
import io.reactivex.Scheduler;
3029
import io.reactivex.disposables.Disposable;
3130
import io.reactivex.functions.Function;
3231
import io.reactivex.schedulers.Schedulers;
@@ -771,7 +770,7 @@ protected List<AVObject> extractCascadingObjects(Object o) {
771770
return result;
772771
}
773772

774-
protected Observable<List<AVObject>> getCascadingSaveObjects() {
773+
protected Observable<List<AVObject>> generateCascadingSaveObjects() {
775774
List<AVObject> result = new ArrayList<>();
776775
for (ObjectFieldOperation ofo: operations.values()) {
777776
List<AVObject> operationValues = extractCascadingObjects(ofo.getValue());
@@ -931,7 +930,7 @@ public Observable<? extends AVObject> saveInBackground(final AVSaveOption option
931930
return Observable.error(new AVException(AVException.CIRCLE_REFERENCE, "Found a circular dependency when saving."));
932931
}
933932

934-
Observable<List<AVObject>> needSaveFirstly = getCascadingSaveObjects();
933+
Observable<List<AVObject>> needSaveFirstly = generateCascadingSaveObjects();
935934
return needSaveFirstly.flatMap(new Function<List<AVObject>, Observable<? extends AVObject>>() {
936935
@Override
937936
public Observable<? extends AVObject> apply(List<AVObject> objects) throws Exception {

core/src/main/java/cn/leancloud/core/AppConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public interface SchedulerCreator{
3737

3838
private static boolean enableLocalCache = true;
3939

40-
private static final String SDK_VERSION = "6.4.5";
40+
private static final String SDK_VERSION = "6.4.6";
4141
private static final String DEFAULT_USER_AGENT = "LeanCloud-Java-SDK/" + SDK_VERSION;
4242

4343
public static void setNetworkTimeout(int seconds) {

0 commit comments

Comments
 (0)