diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b654b1..81e4b6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Main +## 0.7.0 + ### Enhancements - [breaking] Attributes who values are boolean expressions will be emitted as boolean attributes. diff --git a/README.md b/README.md index 8d61ee4..039400e 100644 --- a/README.md +++ b/README.md @@ -16,9 +16,9 @@ Add `temple` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:temple, "~> 0.6.2"}, + {:temple, "~> 0.7.0"}, {:phoenix_view, github: "phoenixframework/phoenix_view"}, - {:phoenix_live_view, github: "phoenixframework/phoenix_live_view"} # currently requires an unreleased version of phoenix_live_view if you are using live view + {:phoenix_live_view, github: "phoenixframework/phoenix_live_view"} # currently requires an unreleased version of phoenix_live_view if you are using live view. The function Temple uses should be released in v0.16.0 ] end ``` diff --git a/mix.exs b/mix.exs index f0182a6..7416bad 100644 --- a/mix.exs +++ b/mix.exs @@ -6,7 +6,7 @@ defmodule Temple.MixProject do app: :temple, name: "Temple", description: "An HTML DSL for Elixir and Phoenix", - version: "0.6.2", + version: "0.7.0", package: package(), elixirc_paths: elixirc_paths(Mix.env()), elixir: "~> 1.9",