Skip to content

Commit

Permalink
ready for 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesward committed May 27, 2022
1 parent 7fc8208 commit d4abeca
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: nick-invision/retry@v2
with:
timeout_minutes: 10
max_attempts: 3
max_attempts: 5
command: |
./gradlew build
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit d4abeca

Please sign in to comment.