diff --git a/README.md b/README.md index ff5d2a42..023c4d31 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ You need Java 8 to run Skuber. 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.7" +libraryDependencies += "io.skuber" %% "skuber" % "2.0.9" ``` 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: diff --git a/build.sbt b/build.sbt index dcf7a15a..f0bddc5c 100644 --- a/build.sbt +++ b/build.sbt @@ -27,7 +27,7 @@ scalacOptions += "-target:jvm-1.8" scalacOptions in Test ++= Seq("-Yrangepos") -version in ThisBuild := "2.0.8" +version in ThisBuild := "2.0.9" sonatypeProfileName := "io.skuber" diff --git a/docs/GUIDE.md b/docs/GUIDE.md index 56374246..1ab190c7 100644 --- a/docs/GUIDE.md +++ b/docs/GUIDE.md @@ -422,8 +422,7 @@ Currently supports one kind - the `CustomResourceDefinition` kind introduced in Supports `NetworkPolicy` resources (for Kubernetes v1.7 and above) - see Kubernetes [Network Policies](https://kubernetes.io/docs/concepts/services-networking/network-policies/) documentation. -[Custom Resources](https://kubernetes.io/docs/concepts/api-extension/custom-resources/) are a powerful feature which enable Kubernetes clients to define and use their own custom resources to be treated in the same way as built-in kinds. They are useful for building custom controllers and other advanced use cases. See the `customresources` example in the `examples` sub-project to see how you can define custom resources that are first-class citizens in the Skuber API. - +[Custom Resources](https://kubernetes.io/docs/concepts/api-extension/custom-resources/) are a powerful feature which enable Kubernetes clients to define and use their own custom resources to be treated in the same way as built-in kinds. They are useful for building Kubernetes operators and other advanced use cases. See the `CustomResourceSpec.scala` integration test which demonstrates how to use them in skuber. ## Label Selectors