diff --git a/CHANGELOG.md b/CHANGELOG.md index d1651be..e4a610d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,13 +11,15 @@ all APIs might be changed. ## Unreleased - yyyy-mm-dd +## v0.10.0 - 2018-10-17 + ### Breaking Changes - Watch operations now return a `Watcher.Event` rather than a k8s WatchEvent struct. - Watcher.Event has atoms for the type instead of strings. - Added a new `gone` event type to watchers. Processes listening for events - should restart a watcher with a new rv when receiving one of these. + should restart a watcher with a new rv when receiving one of these. - Kazan.Request.create (which is used by most of the API request creation methods now returns `{:error, term}` rather than `{:err, term}`. This was a bug fix as the typespec stated that they returned `{:error, term}`. diff --git a/README.md b/README.md index 9c06718..28b2d99 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ If [available in Hex](https://hex.pm/docs/publish), the package can be installed ```elixir def deps do - [{:kazan, "~> 0.9"}] + [{:kazan, "~> 0.10"}] end ``` diff --git a/mix.exs b/mix.exs index 9b04382..cdc697e 100644 --- a/mix.exs +++ b/mix.exs @@ -3,7 +3,7 @@ defmodule Kazan.Mixfile do def project do [app: :kazan, - version: "0.10.0-dev", + version: "0.10.0", elixir: "~> 1.4", build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod,