From d4abeca8e6c4518ef0f1e7986262d2fd5b3684e2 Mon Sep 17 00:00:00 2001 From: James Ward Date: Fri, 27 May 2022 12:26:40 -0600 Subject: [PATCH] ready for 1.3.0 --- .github/workflows/gradle.yml | 2 +- CHANGELOG.md | 17 +++++++++++++++++ build.gradle.kts | 2 +- examples/build.gradle.kts | 2 +- 4 files changed, 20 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 14cc7128..884f4a08 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -25,7 +25,7 @@ jobs: uses: nick-invision/retry@v2 with: timeout_minutes: 10 - max_attempts: 3 + max_attempts: 5 command: | ./gradlew build diff --git a/CHANGELOG.md b/CHANGELOG.md index 41e13cd9..8f7ff298 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ ## Change Log +### 1.3.0 + +#### Changes +* Pin Bazel version by @Kernald in https://github.com/grpc/grpc-kotlin/pull/322 +* Use proper Maven targets rather than legacy compat ones by @Kernald in https://github.com/grpc/grpc-kotlin/pull/321 +* bump versions by @jamesward in https://github.com/grpc/grpc-kotlin/pull/325 +* add server examples - fixes #317 by @jamesward in https://github.com/grpc/grpc-kotlin/pull/319 +* bump versions by @jamesward in https://github.com/grpc/grpc-kotlin/pull/329 +* send headers when failure is null by @sangyongchoi in https://github.com/grpc/grpc-kotlin/pull/335 +* Upgrade coroutines version to 1.6.1. by @lowasser in https://github.com/grpc/grpc-kotlin/pull/327 + +## New Contributors +* @Kernald made their first contribution in https://github.com/grpc/grpc-kotlin/pull/322 +* @sangyongchoi made their first contribution in https://github.com/grpc/grpc-kotlin/pull/335 + +**Full Changelog**: https://github.com/grpc/grpc-kotlin/compare/v1.2.1...v1.3.0 + ### 1.2.1 #### Changes diff --git a/build.gradle.kts b/build.gradle.kts index a6f4f213..a7688d33 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -10,7 +10,7 @@ plugins { } group = "io.grpc" -version = "1.2.1" // CURRENT_GRPC_KOTLIN_VERSION +version = "1.3.0" // CURRENT_GRPC_KOTLIN_VERSION ext["grpcVersion"] = "1.46.0" ext["protobufVersion"] = "3.20.1" diff --git a/examples/build.gradle.kts b/examples/build.gradle.kts index 4e3f1990..3bebce2f 100644 --- a/examples/build.gradle.kts +++ b/examples/build.gradle.kts @@ -7,7 +7,7 @@ plugins { // todo: move to subprojects, but how? ext["grpcVersion"] = "1.46.0" -ext["grpcKotlinVersion"] = "1.2.1" // CURRENT_GRPC_KOTLIN_VERSION +ext["grpcKotlinVersion"] = "1.3.0" // CURRENT_GRPC_KOTLIN_VERSION ext["protobufVersion"] = "3.20.1" ext["coroutinesVersion"] = "1.6.1"