Skip to content

Commit

Permalink
Prepare for 1.0.0-alpha3 release (#1108)
Browse files Browse the repository at this point in the history
* Prepare for 1.0.0-alpha3 release

* Prepare next development version
  • Loading branch information
sav007 committed Nov 13, 2018
1 parent ba0da6f commit a806bb9
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 18 deletions.
Expand Up @@ -473,7 +473,8 @@ public Builder stars(int stars) {
/**
* for test purpose only
*/
public Builder nullableIntFieldWithDefaultValue(@Nullable Integer nullableIntFieldWithDefaultValue) {
public Builder nullableIntFieldWithDefaultValue(
@Nullable Integer nullableIntFieldWithDefaultValue) {
this.nullableIntFieldWithDefaultValue = Input.fromNullable(nullableIntFieldWithDefaultValue);
return this;
}
Expand Down Expand Up @@ -601,7 +602,8 @@ public Builder capitalizedField(@Nullable String capitalizedField) {
/**
* for test purpose only
*/
public Builder nullableIntFieldWithDefaultValueInput(@NotNull Input<Integer> nullableIntFieldWithDefaultValue) {
public Builder nullableIntFieldWithDefaultValueInput(
@NotNull Input<Integer> nullableIntFieldWithDefaultValue) {
this.nullableIntFieldWithDefaultValue = Utils.checkNotNull(nullableIntFieldWithDefaultValue, "nullableIntFieldWithDefaultValue == null");
return this;
}
Expand Down Expand Up @@ -705,7 +707,8 @@ public Builder listOfListOfCustomInput(@NotNull Input<List<List<Date>>> listOfLi
/**
* for test purpose only
*/
public Builder listOfListOfObjectInput(@NotNull Input<List<List<ColorInput>>> listOfListOfObject) {
public Builder listOfListOfObjectInput(
@NotNull Input<List<List<ColorInput>>> listOfListOfObject) {
this.listOfListOfObject = Utils.checkNotNull(listOfListOfObject, "listOfListOfObject == null");
return this;
}
Expand Down
Expand Up @@ -473,7 +473,8 @@ public Builder stars(int stars) {
/**
* for test purpose only
*/
public Builder nullableIntFieldWithDefaultValue(@Nullable Integer nullableIntFieldWithDefaultValue) {
public Builder nullableIntFieldWithDefaultValue(
@Nullable Integer nullableIntFieldWithDefaultValue) {
this.nullableIntFieldWithDefaultValue = Input.fromNullable(nullableIntFieldWithDefaultValue);
return this;
}
Expand Down Expand Up @@ -601,7 +602,8 @@ public Builder capitalizedField(@Nullable String capitalizedField) {
/**
* for test purpose only
*/
public Builder nullableIntFieldWithDefaultValueInput(@NotNull Input<Integer> nullableIntFieldWithDefaultValue) {
public Builder nullableIntFieldWithDefaultValueInput(
@NotNull Input<Integer> nullableIntFieldWithDefaultValue) {
this.nullableIntFieldWithDefaultValue = Utils.checkNotNull(nullableIntFieldWithDefaultValue, "nullableIntFieldWithDefaultValue == null");
return this;
}
Expand Down Expand Up @@ -705,7 +707,8 @@ public Builder listOfListOfCustomInput(@NotNull Input<List<List<Date>>> listOfLi
/**
* for test purpose only
*/
public Builder listOfListOfObjectInput(@NotNull Input<List<List<ColorInput>>> listOfListOfObject) {
public Builder listOfListOfObjectInput(
@NotNull Input<List<List<ColorInput>>> listOfListOfObject) {
this.listOfListOfObject = Utils.checkNotNull(listOfListOfObject, "listOfListOfObject == null");
return this;
}
Expand Down
Expand Up @@ -66,7 +66,8 @@ public String queryDocument() {
}

@Override
public Optional<CreateReviewForEpisodeMutation.Data> wrapData(CreateReviewForEpisodeMutation.Data data) {
public Optional<CreateReviewForEpisodeMutation.Data> wrapData(
CreateReviewForEpisodeMutation.Data data) {
return Optional.fromNullable(data);
}

Expand Down
Expand Up @@ -472,7 +472,8 @@ public Builder stars(int stars) {
/**
* for test purpose only
*/
public Builder nullableIntFieldWithDefaultValue(@Nullable Integer nullableIntFieldWithDefaultValue) {
public Builder nullableIntFieldWithDefaultValue(
@Nullable Integer nullableIntFieldWithDefaultValue) {
this.nullableIntFieldWithDefaultValue = Input.fromNullable(nullableIntFieldWithDefaultValue);
return this;
}
Expand Down Expand Up @@ -600,7 +601,8 @@ public Builder capitalizedField(@Nullable String capitalizedField) {
/**
* for test purpose only
*/
public Builder nullableIntFieldWithDefaultValueInput(@NotNull Input<Integer> nullableIntFieldWithDefaultValue) {
public Builder nullableIntFieldWithDefaultValueInput(
@NotNull Input<Integer> nullableIntFieldWithDefaultValue) {
this.nullableIntFieldWithDefaultValue = Utils.checkNotNull(nullableIntFieldWithDefaultValue, "nullableIntFieldWithDefaultValue == null");
return this;
}
Expand Down Expand Up @@ -704,7 +706,8 @@ public Builder listOfListOfCustomInput(@NotNull Input<List<List<Object>>> listOf
/**
* for test purpose only
*/
public Builder listOfListOfObjectInput(@NotNull Input<List<List<ColorInput>>> listOfListOfObject) {
public Builder listOfListOfObjectInput(
@NotNull Input<List<List<ColorInput>>> listOfListOfObject) {
this.listOfListOfObject = Utils.checkNotNull(listOfListOfObject, "listOfListOfObject == null");
return this;
}
Expand Down
2 changes: 1 addition & 1 deletion apollo-sample/build.gradle
@@ -1,5 +1,5 @@
buildscript {
ext.apolloReleaseVersion = '1.0.0-alpha'
ext.apolloReleaseVersion = '1.0.0-alpha3'

dependencies {
classpath dep.androidPlugin
Expand Down
14 changes: 7 additions & 7 deletions gradle/dependencies.gradle
@@ -1,8 +1,8 @@
def versions = [
apolloVersion : '1.0.0-alpha',
apolloVersion : '1.0.0-alpha3',
cacheVersion : '2.0.2',
okHttpVersion : '3.8.1',
kotlinVersion : '1.1.2-3',
okHttpVersion : '3.11.0',
kotlinVersion : '1.3.0',
supportLibVersion : '25.3.1',
mockito : '1.9.5',
testRunner : '0.5',
Expand All @@ -20,7 +20,7 @@ ext.androidConfig = [
]

ext.dep = [
androidPlugin : 'com.android.tools.build:gradle:2.3.1',
androidPlugin : 'com.android.tools.build:gradle:2.3.3',
apolloPlugin : "com.apollographql.apollo:apollo-gradle-plugin:$versions.apolloVersion",
apolloAndroidSupport : "com.apollographql.apollo:apollo-android-support:$versions.apolloVersion",
apolloRuntime : "com.apollographql.apollo:apollo-runtime:$versions.apolloVersion",
Expand All @@ -29,10 +29,10 @@ ext.dep = [
apolloHttpCache : "com.apollographql.apollo:apollo-http-cache:$versions.apolloVersion",
supportAnnotations : "com.android.support:support-annotations:$versions.supportLibVersion",
recyclerView : "com.android.support:recyclerview-v7:$versions.supportLibVersion",
compiletesting : 'com.google.testing.compile:compile-testing:0.11',
compiletesting : 'com.google.testing.compile:compile-testing:0.15',
cache : "com.nytimes.android:cache:$versions.cacheVersion",
javaPoet : 'com.squareup:javapoet:1.8.0',
moshi : 'com.squareup.moshi:moshi:1.6.0',
javaPoet : 'com.squareup:javapoet:1.11.1',
moshi : 'com.squareup.moshi:moshi:1.8.0',
rxjava : 'io.reactivex:rxjava:1.2.9',
rxjava2 : 'io.reactivex.rxjava2:rxjava:2.0.5',
rxandroid : 'io.reactivex.rxjava2:rxandroid:2.0.1',
Expand Down

0 comments on commit a806bb9

Please sign in to comment.