Skip to content

Commit

Permalink
chore: prepare v1.1.0 (#256)
Browse files Browse the repository at this point in the history
  • Loading branch information
bshaffer authored May 4, 2021
1 parent da32440 commit 1c3c2c0
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
17 changes: 13 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,20 @@

### 1.1.0

- The `grpc-kotlin-stub` library no longer depends on `grpc-protobuf` or `protobuf-java-util`, so your project will need
#### Features

- Removed `grpc-kotlin-stub-lite` (#234)
- The `grpc-kotlin-stub` library no longer depends on `grpc-protobuf` or `protobuf-java-util` (#234), so your project will need
to include protobuf dependencies itself. For examples, see:
[examples/stub/build.gradle.kts](examples/stub/build.gradle.kts),
[examples/stub-lite/build.gradle.kts](examples/stub-lite/build.gradle.kts), or
[examples/stub-android/build.gradle.kts](examples/stub-android/build.gradle.kts)
- The `grpc-kotlin-stub-lite` library no longer exists, instead use `grpc-kotlin-stub`.
- `grpc-kotlin-stub` now exports the `javax.annotation:javax.annotation-api` dependency, so you can drop it from your
project's explicitly listed dependencies.
- The `grpc-kotlin-stub-lite` library no longer exists, instead use `grpc-kotlin-stub`.
- `grpc-kotlin-stub` now exports the `javax.annotation:javax.annotation-api` dependency, so you can drop it from your project's explicitly listed dependencies.
- Added support for proto3 optional fields (#218)
- Added `SERVICE_NAME` constant (#236)

#### Fixes

- Updated to latest grpc version for ARM compatibility (#244)
- Improved examples organization (#183)
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ subprojects {
}

group = "io.grpc"
version = "1.1.0-SNAPSHOT"
version = "1.1.0" // CURRENT_GRPC_KOTLIN_VERSION

repositories {
mavenCentral()
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.37.0"
ext["grpcKotlinVersion"] = "1.1.0-SNAPSHOT" // CURRENT_GRPC_KOTLIN_VERSION
ext["grpcKotlinVersion"] = "1.1.0" // CURRENT_GRPC_KOTLIN_VERSION
ext["protobufVersion"] = "3.15.8"

allprojects {
Expand Down

0 comments on commit 1c3c2c0

Please sign in to comment.