From ad7ab60ccb24f672311ee089a2439f40734a44fa Mon Sep 17 00:00:00 2001 From: David O'Riordan Date: Thu, 20 Oct 2022 07:28:27 +0100 Subject: [PATCH] v2.6.6 release --- README.md | 4 ++-- build.sbt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c88afd4c..369fd9a7 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,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.6.5`, skuber._, skuber.json.format._ + import $ivy.`io.skuber::skuber:2.6.6`, skuber._, skuber.json.format._ ``` ### Interactive with sbt @@ -117,7 +117,7 @@ To get minikube follow the instructions [here](https://github.com/kubernetes/min You can use the latest release (for 2.12 or 2.13) by adding to your build: ```sbt -libraryDependencies += "io.skuber" %% "skuber" % "2.6.5" +libraryDependencies += "io.skuber" %% "skuber" % "2.6.6" ``` Meanwhile users of skuber v1 can continue to use the final v1.x release, which is available only on Scala 2.11: diff --git a/build.sbt b/build.sbt index 6dc2dcb9..0a3cd99a 100644 --- a/build.sbt +++ b/build.sbt @@ -31,7 +31,7 @@ scalacOptions += "-target:jvm-1.8" scalacOptions in Test ++= Seq("-Yrangepos") -ThisBuild / version := "2.6.6-rc0" +ThisBuild / version := "2.6.6" sonatypeProfileName := "io.skuber"