Skip to content

Commit 77037ae

Browse files
Upgrades grpc. Releases frees-rpc 0.0.1. (#41)
1 parent ba24696 commit 77037ae

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

README.md

+21-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,27 @@
99

1010
Simple RPC with Freestyle
1111

12-
# Demo
12+
## Installation
13+
14+
Add the following dependency to your project's build file.
15+
16+
For Scala 2.11.x and 2.12.x:
17+
18+
[comment]: # (Start Replace)
19+
20+
```scala
21+
"io.frees" %% "frees-rpc" % "0.0.1"
22+
```
23+
24+
Or, if using Scala.js (0.6.x):
25+
26+
```scala
27+
"io.frees" %%% "frees-rpc" % "0.0.1"
28+
```
29+
30+
[comment]: # (End Replace)
31+
32+
## Demo
1333

1434
See [freestyle-rpc-examples repo](https://github.com/frees-io/freestyle-rpc-examples).
1535

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ lazy val rpc = project
1414
%%("freestyle-async"),
1515
%%("freestyle-config"),
1616
%%("scalameta-contrib"),
17-
"io.grpc" % "grpc-all" % "1.4.0",
17+
"io.grpc" % "grpc-all" % "1.6.1",
1818
"beyondthelines" %% "pbdirect" % "0.0.3",
1919
%%("monix"),
2020
%%("scalamockScalatest") % "test"

version.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "0.0.1-SNAPSHOT"
1+
version in ThisBuild := "0.0.1"

0 commit comments

Comments
 (0)