Skip to content

Commit

Permalink
chore: prepare v0.2.0 (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
bshaffer authored Sep 16, 2020
1 parent 771e60e commit fbafe07
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ subprojects {
apply plugin: 'java'
apply plugin: 'org.jetbrains.kotlin.jvm'
group = "io.grpc"
version = "0.1.5" // CURRENT_GRPC_KOTLIN_VERSION
version = "0.2.0" // CURRENT_GRPC_KOTLIN_VERSION
repositories {
mavenCentral()
}
Expand Down
2 changes: 1 addition & 1 deletion examples-android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ plugins {

// todo: move to subprojects, but how?
ext["grpcVersion"] = "1.30.0"
ext["grpcKotlinVersion"] = "0.1.3"
ext["grpcKotlinVersion"] = "0.2.0"
ext["protobufVersion"] = "3.12.2"

allprojects {
Expand Down
2 changes: 1 addition & 1 deletion examples-android/common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ protobuf {
artifact = "io.grpc:protoc-gen-grpc-java:${rootProject.ext["grpcVersion"]}"
}
id("grpckt") {
artifact = "io.grpc:protoc-gen-grpc-kotlin:${rootProject.ext["grpcKotlinVersion"]}"
artifact = "io.grpc:protoc-gen-grpc-kotlin:${rootProject.ext["grpcKotlinVersion"]}:jdk7@jar"
}
}
generateProtoTasks {
Expand Down
4 changes: 2 additions & 2 deletions examples/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import com.google.protobuf.gradle.protobuf
import com.google.protobuf.gradle.protoc

val grpcVersion = "1.31.1"
val grpcKotlinVersion = "0.1.5" // CURRENT_GRPC_KOTLIN_VERSION
val grpcKotlinVersion = "0.2.0" // CURRENT_GRPC_KOTLIN_VERSION
val protobufVersion = "3.13.0"
val coroutinesVersion = "1.3.8"

Expand Down Expand Up @@ -44,7 +44,7 @@ protobuf {
artifact = "io.grpc:protoc-gen-grpc-java:$grpcVersion"
}
id("grpckt") {
artifact = "io.grpc:protoc-gen-grpc-kotlin:$grpcKotlinVersion"
artifact = "io.grpc:protoc-gen-grpc-kotlin:$grpcKotlinVersion:jdk7@jar"
}
}
generateProtoTasks {
Expand Down

0 comments on commit fbafe07

Please sign in to comment.