Skip to content

Commit

Permalink
v2.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
doriordan committed Feb 25, 2019
1 parent 485be9e commit d0a950c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Provides you with a configured client on startup. It is handy to use this for qu
> Just handy shortcut to import skuber inside ammonite-repl:
```scala
import $ivy.`io.skuber::skuber:2.1.0`, skuber._, skuber.json.format._
import $ivy.`io.skuber::skuber:2.1.1`, skuber._, skuber.json.format._
```

### Interactive with sbt
Expand Down Expand Up @@ -119,7 +119,7 @@ To get minikube follow the instructions [here](https://github.com/kubernetes/min
You can use the latest release (for Scala 2.11 or 2.12) by adding to your build:
```sbt
libraryDependencies += "io.skuber" %% "skuber" % "2.1.0"
libraryDependencies += "io.skuber" %% "skuber" % "2.1.1"
```
Meanwhile users of skuber v1 can continue to use the latest (and possibly final, with exception of important fixes) v1.x release, which is available only on Scala 2.11:
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ scalacOptions += "-target:jvm-1.8"

scalacOptions in Test ++= Seq("-Yrangepos")

version in ThisBuild := "2.1.0"
version in ThisBuild := "2.1.1"

sonatypeProfileName := "io.skuber"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -335,9 +335,9 @@ trait KubernetesClient {
* @param maybeContainerName an optional container name
* @param maybeStdin optional Akka Source for sending input to stdin for the command
* @param maybeStdout optional Akka Sink to receive output from stdout for the command
* @param maybeStderr optional Akka Sink to recieve output from stderr for the command
* @param maybeStderr optional Akka Sink to receive output from stderr for the command
* @param tty optionally set tty on
* @param maybeClose if set, this Promise can be used to terminate the command
* @param maybeClose if set, this can be used to close the connection to the pod by completing the promise
* @return A future indicating the exec command has been submitted
*/
def exec(
Expand Down

0 comments on commit d0a950c

Please sign in to comment.