Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issue 105 #106

Merged
merged 1 commit into from
Jan 14, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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