Skip to content

Commit

Permalink
Release v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
obmarg committed Oct 17, 2018
1 parent 47b7cd6 commit fcf4f84
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}`.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit fcf4f84

Please sign in to comment.