Skip to content

Commit

Permalink
Release 2.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
doriordan committed Jul 23, 2018
1 parent 63c3ef1 commit 7ed7630
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
3 changes: 1 addition & 2 deletions docs/GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 7ed7630

Please sign in to comment.