Skip to content

Commit 7d7b863

Browse files
committed
Release v2.0.10
1 parent 35cb736 commit 7d7b863

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

Quickstart.sc

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Cluster access configuration is parsed to `cfg` val
66
Client val is called `k8s`
77
*/
8-
import $ivy.`io.skuber::skuber:2.0.9`, skuber._, skuber.json.format._
8+
import $ivy.`io.skuber::skuber:2.0.10`, skuber._, skuber.json.format._
99

1010
import akka.actor.ActorSystem
1111
import akka.stream.ActorMaterializer

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Provides you with a configured client on startup. It is handy to use this for qu
6666
> Just handy shortcut to import skuber inside ammonite-repl:
6767
6868
```scala
69-
import $ivy.`io.skuber::skuber:2.0.9`, skuber._, skuber.json.format._
69+
import $ivy.`io.skuber::skuber:2.0.10`, skuber._, skuber.json.format._
7070
```
7171

7272
### Interactive with sbt
@@ -119,7 +119,7 @@ To get minikube follow the instructions [here](https://github.com/kubernetes/min
119119
You can use the latest release (for Scala 2.11 or 2.12) by adding to your build:
120120
121121
```sbt
122-
libraryDependencies += "io.skuber" %% "skuber" % "2.0.9"
122+
libraryDependencies += "io.skuber" %% "skuber" % "2.0.10"
123123
```
124124
125125
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:

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ scalacOptions += "-target:jvm-1.8"
2929

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

32-
version in ThisBuild := "2.0.9"
32+
version in ThisBuild := "2.0.10"
3333

3434
sonatypeProfileName := "io.skuber"
3535

docs/GUIDE.md

+2
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,8 @@ Note that both of the examples above watch only those events which have a later
316316
k8s.watch[Pod]("myPod", sinceResourceVersion=lastProcessedResourceVersion)
317317
```
318318

319+
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.
320+
319321
### Extensions API Group
320322

321323
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.

0 commit comments

Comments
 (0)