Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gRPC Client and Service code gen #16

Merged
merged 15 commits into from
Jan 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
## Version 0.2.2
_2018-12-3_
## Version 0.2.2-RC1
_2018-01-03_
* New: Update to kotlin ```1.3.11```

#### Protoc Plugin
* New: gRPC Coroutines Client & Server Code Generation
* New: Stand alone version of gRPC code gen. ```protoc-gen-grpc-coroutines```

#### Coroutines
* New: Benchmark implementation of gRPC coroutines
* New: Experimental global dispatcher ```Dispatchers.Grpc```
* New: ```SendChannel``` utility api ```CoroutineScope.launchProducerJob```
* Deprecated: ```InboundStreamChannel``` in favor of new stub APIs
* Deprecated: ```ServerBidiCallChannel``` in favor of new stub APIs

## Version 0.2.1
_2018-11-02_
Expand Down
11 changes: 6 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ buildscript {
versions = [
"protobuf": '3.6.1',
"grpc": '1.15.1',
"kotlin": '1.3.0',
"kotlin": '1.3.11',
"coroutines": '1.0.0',
"bintray": '1.7.3',
'artifactory':'4.7.1',
Expand All @@ -23,12 +23,13 @@ buildscript {
}

plugins{
id 'com.google.protobuf' version '0.8.6' apply false
id 'org.jetbrains.kotlin.jvm' version '1.3.0-rc-116' apply false
id 'com.google.protobuf' version '0.8.7' apply false
id 'org.jetbrains.kotlin.jvm' version '1.3.11' apply false
id "com.jfrog.bintray" version "1.8.4" apply false
id "com.jfrog.artifactory" version "4.8.1" apply false
id "org.springframework.boot" version "2.0.3.RELEASE" apply false
id 'com.gradle.plugin-publish' version '0.9.7' apply false
id "com.google.osdetector" version "1.4.0"
}

subprojects{ subproject ->
Expand All @@ -44,7 +45,7 @@ subprojects{ subproject ->
apply plugin: 'kotlin'

group = 'com.github.marcoferrer.krotoplus'
version = '0.2.2-SNAPSHOT'
version = '0.2.2-RC1'

compileKotlin {
kotlinOptions.jvmTarget = "1.8"
Expand All @@ -55,7 +56,7 @@ subprojects{ subproject ->
}

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "org.jetbrains.kotlin:kotlin-stdlib"

testImplementation group: 'junit', name: 'junit', version: '[4,)'
testImplementation "org.jetbrains.kotlin:kotlin-test"
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
object Versions {
const val protobuf = "3.6.1"
const val grpc = "1.15.1"
const val kotlin = "1.3.0"
const val coroutines = "1.0.0"
const val kotlin = "1.3.11"
const val coroutines = "1.1.0"
}
Loading