Bump v0.6.1

This commit is contained in:
Mitchell Hanberg 2021-05-23 14:01:25 -04:00
parent 15a999d8f3
commit 006886fa5e
3 changed files with 7 additions and 3 deletions

View file

@ -2,6 +2,10 @@
## Main
Nothing yet
## 0.6.1
### Bug fixes
- Only collect slots in the root of a component instance #127

View file

@ -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

View file

@ -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",