Skip to content

Commit

Permalink
Release v2.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
doriordan committed Aug 26, 2018
1 parent 35cb736 commit 7d7b863
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Quickstart.sc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Cluster access configuration is parsed to `cfg` val
Client val is called `k8s`
*/
import $ivy.`io.skuber::skuber:2.0.9`, skuber._, skuber.json.format._
import $ivy.`io.skuber::skuber:2.0.10`, skuber._, skuber.json.format._

import akka.actor.ActorSystem
import akka.stream.ActorMaterializer
Expand Down
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.0.9`, skuber._, skuber.json.format._
import $ivy.`io.skuber::skuber:2.0.10`, 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.0.9"
libraryDependencies += "io.skuber" %% "skuber" % "2.0.10"
```
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.0.9"
version in ThisBuild := "2.0.10"

sonatypeProfileName := "io.skuber"

Expand Down
2 changes: 2 additions & 0 deletions docs/GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,8 @@ Note that both of the examples above watch only those events which have a later
k8s.watch[Pod]("myPod", sinceResourceVersion=lastProcessedResourceVersion)
```

The API methods `watchContinuously` and `watchAllContinuously` are available since v2.0.10. These methods provide equivalent functionality (and type signatures) to `watch` and `watchAll` respectively, with the key difference that instead of the returned source finishing if the underlying watch request times out, these methods handle such timeouts transparently so that the application will receive new events indefinitely from the source returned by a single `watchContinuously` or `watchAllContinuously` call.

### Extensions API Group

The extensions API group traditionally contains some key types. Although in more recent versions of Kubernetes many of these have been migrated to other groups, this group is still supported and widely used.
Expand Down

0 comments on commit 7d7b863

Please sign in to comment.