diff --git a/CHANGELOG.md b/CHANGELOG.md index bd0bd58..9d4a528 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Main +Nothing yet + +## 0.6.1 + ### Bug fixes - Only collect slots in the root of a component instance #127 diff --git a/README.md b/README.md index a14dfbb..f51ad9b 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,8 @@ Add `temple` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:temple, "~> 0.6.0"}, - {:phoenix, ">= 1.5.0"}, # requires at least Phoenix v1.5.0 + {:temple, "~> 0.6.1"}, + {: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 ] end diff --git a/mix.exs b/mix.exs index caee56d..cff6758 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.0", + version: "0.6.1", package: package(), elixirc_paths: elixirc_paths(Mix.env()), elixir: "~> 1.9",