Skip to content

Commit

Permalink
update changelog and readme for RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoferrer committed Jan 4, 2019
1 parent 06e0189 commit f3c0267
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 6,016 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,17 @@ _2018-01-03_
#### Coroutines
* New: Benchmark implementation of gRPC coroutines
* New: Experimental global dispatcher ```Dispatchers.Grpc```
* New: ```SendChannel``` utility api ```CoroutineScope.launchProducerJob```
* New: ```SendChannel``` utility api ```CoroutineScope.launchProducerJob```
* Fix: Lowered byte code target for Android compatibility
* Deprecated: ```InboundStreamChannel``` in favor of new stub APIs
* Deprecated: ```ServerBidiCallChannel``` in favor of new stub APIs

#### Proto Builders (DSL)
* Fix: Nested messages are now tagged with ```@DslMarker``` annotation

#### Community Scripts
* New: ```grpc-gateway``` entry point generation script

## Version 0.2.1
_2018-11-02_
* Fix: Address regression in file filter matching
Expand Down
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,20 @@

### Community Contributions are Welcomed

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

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

## Coming Soon
* Full Client & Server Stub Generation 🎉
* New gradle configuration dsl
* Windows executable

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

### gRPC Coroutines Client & Server
#### [Configuration Options]()
__Docs Coming Soon__


### gRPC Stub Extensions
#### [Configuration Options](https://github.com/marcoferrer/kroto-plus/blob/master/protoc-gen-kroto-plus/src/main/proto/krotoplus/compiler/config.proto#L61)

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ buildscript {
}

plugins{
id 'com.google.protobuf' version '0.8.7' apply false
id 'com.google.protobuf' version '0.8.6' 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
Expand Down
Loading

0 comments on commit f3c0267

Please sign in to comment.