diff --git a/RELEASING.md b/RELEASING.md index 1fcf638abd7..f610ab3d6bd 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -36,7 +36,6 @@ $ VERSION_FILES=( android-interop-testing/app/build.gradle core/src/main/java/io/grpc/internal/GrpcUtil.java cronet/build.gradle - documentation/android-channel-builder.md examples/build.gradle examples/pom.xml examples/android/clientcache/app/build.gradle @@ -119,7 +118,8 @@ Tagging the Release $ git checkout -b release # Bump documented versions. Don't forget protobuf version $ ${EDITOR:-nano -w} README.md - $ git commit -a -m "Update README to reference $MAJOR.$MINOR.$PATCH" + $ ${EDITOR:-nano -w} documentation/android-channel-builder.md + $ git commit -a -m "Update README etc to reference $MAJOR.$MINOR.$PATCH" ``` 3. Change root build files to remove "-SNAPSHOT" for the next release version (e.g. `0.7.0`). Commit the result and make a tag: diff --git a/documentation/android-channel-builder.md b/documentation/android-channel-builder.md index 43968c437eb..eb318b2c205 100644 --- a/documentation/android-channel-builder.md +++ b/documentation/android-channel-builder.md @@ -36,8 +36,8 @@ In your `build.gradle` file, include a dependency on both `grpc-android` and `grpc-okhttp`: ``` -implementation 'io.grpc:grpc-android:1.23.0' // CURRENT_GRPC_VERSION -implementation 'io.grpc:grpc-okhttp:1.23.0' // CURRENT_GRPC_VERSION +implementation 'io.grpc:grpc-android:1.22.0' +implementation 'io.grpc:grpc-okhttp:1.22.0' ``` You will also need permission to access the device's network state in your