Skip to content

Commit f3c0267

Browse files
committed
update changelog and readme for RC1
1 parent 06e0189 commit f3c0267

File tree

7 files changed

+40
-6016
lines changed

7 files changed

+40
-6016
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,17 @@ _2018-01-03_
99
#### Coroutines
1010
* New: Benchmark implementation of gRPC coroutines
1111
* New: Experimental global dispatcher ```Dispatchers.Grpc```
12-
* New: ```SendChannel``` utility api ```CoroutineScope.launchProducerJob```
12+
* New: ```SendChannel``` utility api ```CoroutineScope.launchProducerJob```
13+
* Fix: Lowered byte code target for Android compatibility
1314
* Deprecated: ```InboundStreamChannel``` in favor of new stub APIs
1415
* Deprecated: ```ServerBidiCallChannel``` in favor of new stub APIs
1516

17+
#### Proto Builders (DSL)
18+
* Fix: Nested messages are now tagged with ```@DslMarker``` annotation
19+
20+
#### Community Scripts
21+
* New: ```grpc-gateway``` entry point generation script
22+
1623
## Version 0.2.1
1724
_2018-11-02_
1825
* Fix: Address regression in file filter matching

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,20 @@
99

1010
### Community Contributions are Welcomed
1111

12-
## Quick Start:
12+
## Quick Start: gRPC Coroutines
1313
Run the following command to get started with a preconfigured template project. (_[kotlin-coroutines-gRPC-template](https://github.com/marcoferrer/kotlin-coroutines-gRPC-template)_)
1414
```bash
1515
git clone https://github.com/marcoferrer/kotlin-coroutines-gRPC-template && \
1616
cd kotlin-coroutines-gRPC-template && \
1717
./gradlew run
1818
```
1919

20-
## Version 0.2.1
20+
## Version 0.2.2-RC1
2121
* [CHANGELOG](https://github.com/marcoferrer/kroto-plus/blob/master/CHANGELOG.md)
2222
* Most notable changes
23-
* Update to Kotlin 1.3.0
24-
* Update to Coroutines 1.0.0
25-
* Builder DSL support and safety via Kotlin's ```@DslMarker``` annotation
23+
* Full Client & Server Stub Generation 🎉
2624

2725
## Coming Soon
28-
* Full Client & Server Stub Generation 🎉
2926
* New gradle configuration dsl
3027
* Windows executable
3128

@@ -86,6 +83,11 @@ The generated extensions allow composition of proto messages in a dsl style. Sup
8683
}
8784
```
8885

86+
### gRPC Coroutines Client & Server
87+
#### [Configuration Options]()
88+
__Docs Coming Soon__
89+
90+
8991
### gRPC Stub Extensions
9092
#### [Configuration Options](https://github.com/marcoferrer/kroto-plus/blob/master/protoc-gen-kroto-plus/src/main/proto/krotoplus/compiler/config.proto#L61)
9193

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ buildscript {
2323
}
2424

2525
plugins{
26-
id 'com.google.protobuf' version '0.8.7' apply false
26+
id 'com.google.protobuf' version '0.8.6' apply false
2727
id 'org.jetbrains.kotlin.jvm' version '1.3.11' apply false
2828
id "com.jfrog.bintray" version "1.8.4" apply false
2929
id "com.jfrog.artifactory" version "4.8.1" apply false

0 commit comments

Comments
 (0)