From 27e9ab923dd2a3b89e030de918f4d7c9da316248 Mon Sep 17 00:00:00 2001 From: Graeme Coupar Date: Tue, 10 Apr 2018 16:15:08 +0100 Subject: [PATCH] Release v0.8.0 --- CHANGELOG.md | 9 +++++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cfe3c82..860fe6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,15 @@ This project intends to inhere to [Semantic Versioning](http://semver.org/spec/v2.0.0.html), but has not yet reached 1.0 so all APIs might be changed. +## v0.8.0 - 2018-04-10 + +### Breaking Changes + +- Kazan now depends on YamlElixir 2.0. This isn't a breaking change for users + of Kazan, but may be a breaking change if you use YamlElixir directly. + However, the upgrade process should be reasonably easy - the read_from_x + functions have just been renamed to read_from_x! + ## v0.7.0 - 2018-04-04 ### Changes diff --git a/README.md b/README.md index 1ab8f25..ee08ce2 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ If [available in Hex](https://hex.pm/docs/publish), the package can be installed ```elixir def deps do - [{:kazan, "~> 0.7"}] + [{:kazan, "~> 0.8"}] end ``` diff --git a/mix.exs b/mix.exs index 16ad924..2e21bbf 100644 --- a/mix.exs +++ b/mix.exs @@ -3,7 +3,7 @@ defmodule Kazan.Mixfile do def project do [app: :kazan, - version: "0.7.0", + version: "0.8.0", elixir: "~> 1.4", build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod,