Skip to content

Commit

Permalink
doc: fix version bug in documentation/android-channel-builder.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dapengzhang0 committed Jul 30, 2019
1 parent 188b4d1 commit 79bc50c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions RELEASING.md
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions documentation/android-channel-builder.md
Expand Up @@ -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
Expand Down

0 comments on commit 79bc50c

Please sign in to comment.