Skip to content

Commit

Permalink
Fix issue 105 (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
doriordan authored Jan 14, 2018
1 parent 63b3977 commit bfdb0d9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ You need Java 8 to run Skuber.

You can use the latest v2.0 release (for Scala 2.11 or 2.12) by adding to your build:

libraryDependencies += "io.skuber" %% "skuber" % "2.0.0"
libraryDependencies += "io.skuber" %% "skuber" % "2.0.2"

Meanwhile existing users 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 @@ -24,7 +24,7 @@ scalacOptions += "-target:jvm-1.8"

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

version in ThisBuild := "2.0.1"
version in ThisBuild := "2.0.2"

sonatypeProfileName := "io.skuber"

Expand Down
2 changes: 1 addition & 1 deletion client/src/main/scala/skuber/json/package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@ package object format {
(JsPath \ "kind").formatMaybeEmptyString() and
(JsPath \ "gracePeriodSeconds").formatNullable[Int] and
(JsPath \ "preconditions").formatNullable[Preconditions] and
(JsPath \ "propagationPlicy").formatNullableEnum(DeletePropagation)
(JsPath \ "propagationPolicy").formatNullableEnum(DeletePropagation)
)(DeleteOptions.apply _, unlift(DeleteOptions.unapply))

// formatters for API 'supporting' types i.e. non resource types such as status and watch events
Expand Down

0 comments on commit bfdb0d9

Please sign in to comment.