Skip to content
This repository has been archived by the owner on Oct 14, 2021. It is now read-only.

Commit

Permalink
Upgrade to airframe 21.9.0 (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
xerial authored Sep 5, 2021
1 parent 7eccabb commit 0e7c5f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ addSbtPlugin("org.wvlet.airframe" % "sbt-airframe" % "(version)")

To generate HTTP clients, add `airframeHttpClients` setting to your `build.sbt`. You need to specify
which API package to use for generating RPC clients. The format
is `<RPC package name>:<client type>(:<target package name>)?`. For example:
is `<RPC package name>:<client type>(:<target package name>(.<target class name>)?)?`. For example:

__build.sbt__

Expand All @@ -37,7 +37,7 @@ Supported client types are:
- __async__: Create an async HTTP client (ServiceClient) for Scala (JVM) using Future
abstraction (`F`). The `F` can be `scala.concurrent.Future` or twitter-util's Future.
- __scalajs__: Create an RPC client (ServiceClientJS)
- __grpc__: Create gRPC client stubs (ServiceGrpc: SyncClient, AsyncClient)
- __grpc__: Create gRPC client factory (ServiceGrpc: SyncClient, AsyncClient)

To support other types of clients, see the examples
of [HTTP code generators](https://github.com/wvlet/airframe/blob/master/airframe-http-codegen/src/main/scala/wvlet/airframe/http/codegen/client/ScalaHttpClientGenerator.scala)
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Reload build.sbt on changes
Global / onChangedBuildSource := ReloadOnSourceChanges

val AIRFRAME_VERSION = sys.env.getOrElse("AIRFRAME_VERSION", "21.8.1")
val AIRSPEC_VERSION = "21.8.1"
val AIRFRAME_VERSION = sys.env.getOrElse("AIRFRAME_VERSION", "21.9.0")
val AIRSPEC_VERSION = "21.9.0"
val SCALA_2_12 = "2.12.14"

ThisBuild / organization := "org.wvlet.airframe"
Expand Down

0 comments on commit 0e7c5f6

Please sign in to comment.