Skip to content

Commit

Permalink
Updates policy files from SBT [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
47erbot committed Mar 11, 2020
1 parent d805dba commit faef7d2
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[comment]: # (Start Badges)

[![Build Status](https://travis-ci.org/higherkindness/mu-scala.svg?branch=master)](https://travis-ci.org/higherkindness/mu-scala) [![codecov.io](http://codecov.io/gh/higherkindness/mu-scala/branch/master/graph/badge.svg)](http://codecov.io/gh/higherkindness/mu-scala) [![Maven Central](https://img.shields.io/badge/maven%20central-0.21.1-green.svg)](https://oss.sonatype.org/#nexus-search;gav~io.higherkindness~mu-scala*) [![Latest version](https://img.shields.io/badge/mu--scala-0.21.1-green.svg)](https://index.scala-lang.org/higherkindness/mu-scala) [![License](https://img.shields.io/badge/license-Apache%202-blue.svg)](https://raw.githubusercontent.com/higherkindness/mu-scala/master/LICENSE) [![Join the chat at https://gitter.im/47deg/mu](https://badges.gitter.im/47deg/mu.svg)](https://gitter.im/47deg/mu?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![GitHub Issues](https://img.shields.io/github/issues/higherkindness/mu-scala.svg)](https://github.com/higherkindness/mu-scala/issues)
[![Build Status](https://travis-ci.org/higherkindness/mu-scala.svg?branch=master)](https://travis-ci.org/higherkindness/mu-scala) [![codecov.io](http://codecov.io/gh/higherkindness/mu-scala/branch/master/graph/badge.svg)](http://codecov.io/gh/higherkindness/mu-scala) [![Maven Central](https://img.shields.io/badge/maven%20central-0.21.2-green.svg)](https://oss.sonatype.org/#nexus-search;gav~io.higherkindness~mu-scala*) [![Latest version](https://img.shields.io/badge/mu--scala-0.21.2-green.svg)](https://index.scala-lang.org/higherkindness/mu-scala) [![License](https://img.shields.io/badge/license-Apache%202-blue.svg)](https://raw.githubusercontent.com/higherkindness/mu-scala/master/LICENSE) [![Join the chat at https://gitter.im/47deg/mu](https://badges.gitter.im/47deg/mu.svg)](https://gitter.im/47deg/mu?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![GitHub Issues](https://img.shields.io/github/issues/higherkindness/mu-scala.svg)](https://github.com/higherkindness/mu-scala/issues)

[comment]: # (End Badges)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ First add the sbt plugin in `project/plugins.sbt`:
[comment]: # (Start Replace)

```scala
addSbtPlugin("io.higherkindness" % "sbt-mu-srcgen" % "0.21.1")
addSbtPlugin("io.higherkindness" % "sbt-mu-srcgen" % "0.21.2")
```

[comment]: # (End Replace)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Add the following line to _project/plugins.sbt_:
[comment]: # (Start Replace)

```scala
addSbtPlugin("io.higherkindness" % "sbt-mu-srcgen" % "0.21.1")
addSbtPlugin("io.higherkindness" % "sbt-mu-srcgen" % "0.21.2")
```

[comment]: # (End Replace)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ First add the sbt plugin in `project/plugins.sbt`:
[comment]: # (Start Replace)

```scala
addSbtPlugin("io.higherkindness" % "sbt-mu-srcgen" % "0.21.1")
addSbtPlugin("io.higherkindness" % "sbt-mu-srcgen" % "0.21.2")
```

[comment]: # (End Replace)
Expand Down
28 changes: 14 additions & 14 deletions docs/src/main/docs/reference/modules-artifacts.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,41 +61,41 @@ You can install any of these dependencies in your build as follows:

```scala
// required for the RPC server
libraryDependencies += "io.higherkindness" %% "mu-rpc-server" % "0.21.1"
libraryDependencies += "io.higherkindness" %% "mu-rpc-server" % "0.21.2"

// required for a protocol definition:
libraryDependencies += "io.higherkindness" %% "mu-rpc-channel" % "0.21.1"
libraryDependencies += "io.higherkindness" %% "mu-rpc-channel" % "0.21.2"

// required for a protocol definition with streaming operations:
libraryDependencies += "io.higherkindness" %% "mu-rpc-monix" % "0.21.1"
libraryDependencies += "io.higherkindness" %% "mu-rpc-monix" % "0.21.2"
// or:
libraryDependencies += "io.higherkindness" %% "mu-rpc-fs2" % "0.21.1"
libraryDependencies += "io.higherkindness" %% "mu-rpc-fs2" % "0.21.2"

// required for the use of generated RPC clients, using either Netty or OkHttp as transport layer:
libraryDependencies += "io.higherkindness" %% "mu-rpc-netty" % "0.21.1"
libraryDependencies += "io.higherkindness" %% "mu-rpc-netty" % "0.21.2"
// or:
libraryDependencies += "io.higherkindness" %% "mu-rpc-okhttp" % "0.21.1"
libraryDependencies += "io.higherkindness" %% "mu-rpc-okhttp" % "0.21.2"

// optional - for easy RPC server/client configuration.
libraryDependencies += "io.higherkindness" %% "mu-config" % "0.21.1"
libraryDependencies += "io.higherkindness" %% "mu-config" % "0.21.2"

// optional - for RPC server/client metrics reporting, using Prometheus.
libraryDependencies += "io.higherkindness" %% "mu-rpc-prometheus" % "0.21.1"
libraryDependencies += "io.higherkindness" %% "mu-rpc-prometheus" % "0.21.2"

// optional - for RPC server/client metrics reporting, using Dropwizard.
libraryDependencies += "io.higherkindness" %% "mu-rpc-dropwizard" % "0.21.1"
libraryDependencies += "io.higherkindness" %% "mu-rpc-dropwizard" % "0.21.2"

// optional - for communication between RPC server and client using SSL/TLS.
libraryDependencies += "io.higherkindness" %% "mu-rpc-netty-ssl" % "0.21.1"
libraryDependencies += "io.higherkindness" %% "mu-rpc-netty-ssl" % "0.21.2"

// optional - for RPC marshallers for jodatime types.
libraryDependencies += "io.higherkindness" %% "mu-rpc-marshallers-jodatime" % "0.21.1"
libraryDependencies += "io.higherkindness" %% "mu-rpc-marshallers-jodatime" % "0.21.2"

// optional - to add caching support to RPC clients.
libraryDependencies += "io.higherkindness" %% "mu-rpc-client-cache" % "0.21.1"
libraryDependencies += "io.higherkindness" %% "mu-rpc-client-cache" % "0.21.2"

// optional - for testing RPC services
libraryDependencies += "io.higherkindness" %% "mu-rpc-testing" % "0.21.1" % Test
libraryDependencies += "io.higherkindness" %% "mu-rpc-testing" % "0.21.2" % Test
```

### sbt plugin
Expand All @@ -104,7 +104,7 @@ To generate Scala code from IDL files (`.proto`, `.avdl`, OpenAPI `.yaml`,
etc.), you will need the `sbt-mu-srcgen` plugin:

```
addSbtPlugin("io.higherkindness" %% "sbt-mu-srcgen" % "0.21.1")
addSbtPlugin("io.higherkindness" %% "sbt-mu-srcgen" % "0.21.2")
```

[comment]: # (End Replace)
Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/docs/tutorials/openapi-client.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ file and generate corresponding Scala code.
[comment]: # (Start Replace)

```scala
addSbtPlugin("io.higherkindness" % "sbt-mu-srcgen" % "0.21.1")
addSbtPlugin("io.higherkindness" % "sbt-mu-srcgen" % "0.21.2")
```

[comment]: # (End Replace)
Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/docs/tutorials/testing-rpc-service.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ some helpers for setting up an in-memory service for testing.
[comment]: # (Start Replace)

```
libraryDependencies += "io.higherkindness" %% "mu-rpc-testing" % "0.21.1" % Test
libraryDependencies += "io.higherkindness" %% "mu-rpc-testing" % "0.21.2" % Test
```

[comment]: # (End Replace)
Expand Down

0 comments on commit faef7d2

Please sign in to comment.