Skip to content

Commit c3daa55

Browse files
authored
chore: prepare 1.2.0 (#295)
1 parent f834a3c commit c3daa55

File tree

4 files changed

+28
-6
lines changed

4 files changed

+28
-6
lines changed

CHANGELOG.md

+24-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
## Change Log
22

3+
### 1.2.0
4+
5+
#### Changes
6+
- Restore metadata support to generated clients by @lowasser in https://github.com/grpc/grpc-kotlin/pull/268
7+
- fixed application name in client by @Arashi5 in https://github.com/grpc/grpc-kotlin/pull/284
8+
- Mark deprecated service methods with `@Deprecated`. by @lowasser in https://github.com/grpc/grpc-kotlin/pull/264
9+
- Open context val in order to allow overriding by @bjoernmayer in https://github.com/grpc/grpc-kotlin/pull/287
10+
- Defer writing headers until the first message stanza is sent by @rwbergstrom in https://github.com/grpc/grpc-kotlin/pull/275
11+
- Support StatusException in CoroutineContextServerInterceptor. by @hovinen in https://github.com/grpc/grpc-kotlin/pull/249
12+
- Cleanup by @jamesward in https://github.com/grpc/grpc-kotlin/pull/293
13+
- kotlin protos by @jamesward in https://github.com/grpc/grpc-kotlin/pull/266
14+
15+
#### New Contributors
16+
- @Arashi5 made their first contribution in https://github.com/grpc/grpc-kotlin/pull/284
17+
- @bjoernmayer made their first contribution in https://github.com/grpc/grpc-kotlin/pull/287
18+
- @rwbergstrom made their first contribution in https://github.com/grpc/grpc-kotlin/pull/275
19+
- @hovinen made their first contribution in https://github.com/grpc/grpc-kotlin/pull/249
20+
21+
**Full Changelog**: https://github.com/grpc/grpc-kotlin/compare/v1.1.0...v1.2.0
22+
323
### 1.1.0
424

525
#### Features
@@ -12,10 +32,10 @@
1232
[examples/stub-android/build.gradle.kts](examples/stub-android/build.gradle.kts)
1333
- The `grpc-kotlin-stub-lite` library no longer exists, instead use `grpc-kotlin-stub`.
1434
- `grpc-kotlin-stub` now exports the `javax.annotation:javax.annotation-api` dependency, so you can drop it from your project's explicitly listed dependencies.
15-
- Added support for proto3 optional fields (#218)
16-
- Added `SERVICE_NAME` constant (#236)
35+
- Added support for proto3 optional fields (#218)
36+
- Added `SERVICE_NAME` constant (#236)
1737

1838
#### Fixes
1939

20-
- Updated to latest grpc version for ARM compatibility (#244)
21-
- Improved examples organization (#183)
40+
- Updated to latest grpc version for ARM compatibility (#244)
41+
- Improved examples organization (#183)

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ This repo includes the sources for the following:
2525
For more information, see the following [Kotlin/JVM pages from grpc.io][]:
2626

2727
- [Quick start][]
28+
- [Maven / Gradle Plugin instructions]
2829
- [Basics tutorial][]
2930
- [API reference][]
3031

@@ -50,3 +51,4 @@ Note that [official releases][] are [published to Maven Central][].
5051
[protocolbuffers/protobuf#3742]: https://github.com/protocolbuffers/protobuf/issues/3742
5152
[published to Maven Central]: https://search.maven.org/search?q=g:io.grpc%20AND%20grpc-kotlin
5253
[Quick start]: https://grpc.io/docs/languages/kotlin/quickstart/
54+
[Maven / Gradle Plugin instructions]: compiler/README.md

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ subprojects {
2323
}
2424

2525
group = "io.grpc"
26-
version = "1.1.0" // CURRENT_GRPC_KOTLIN_VERSION
26+
version = "1.2.0" // CURRENT_GRPC_KOTLIN_VERSION
2727

2828
repositories {
2929
mavenCentral()

examples/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77

88
// todo: move to subprojects, but how?
99
ext["grpcVersion"] = "1.39.0" // need to wait for grpc kotlin to move past this
10-
ext["grpcKotlinVersion"] = "1.1.0" // CURRENT_GRPC_KOTLIN_VERSION
10+
ext["grpcKotlinVersion"] = "1.2.0" // CURRENT_GRPC_KOTLIN_VERSION
1111
ext["protobufVersion"] = "3.18.1"
1212
ext["coroutinesVersion"] = "1.5.2"
1313

0 commit comments

Comments
 (0)