Bump v0.6.1
This commit is contained in:
parent
15a999d8f3
commit
006886fa5e
3 changed files with 7 additions and 3 deletions
|
@ -2,6 +2,10 @@
|
||||||
|
|
||||||
## Main
|
## Main
|
||||||
|
|
||||||
|
Nothing yet
|
||||||
|
|
||||||
|
## 0.6.1
|
||||||
|
|
||||||
### Bug fixes
|
### Bug fixes
|
||||||
|
|
||||||
- Only collect slots in the root of a component instance #127
|
- Only collect slots in the root of a component instance #127
|
||||||
|
|
|
@ -16,8 +16,8 @@ Add `temple` to your list of dependencies in `mix.exs`:
|
||||||
```elixir
|
```elixir
|
||||||
def deps do
|
def deps do
|
||||||
[
|
[
|
||||||
{:temple, "~> 0.6.0"},
|
{:temple, "~> 0.6.1"},
|
||||||
{:phoenix, ">= 1.5.0"}, # requires at least Phoenix v1.5.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
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
|
|
2
mix.exs
2
mix.exs
|
@ -6,7 +6,7 @@ defmodule Temple.MixProject do
|
||||||
app: :temple,
|
app: :temple,
|
||||||
name: "Temple",
|
name: "Temple",
|
||||||
description: "An HTML DSL for Elixir and Phoenix",
|
description: "An HTML DSL for Elixir and Phoenix",
|
||||||
version: "0.6.0",
|
version: "0.6.1",
|
||||||
package: package(),
|
package: package(),
|
||||||
elixirc_paths: elixirc_paths(Mix.env()),
|
elixirc_paths: elixirc_paths(Mix.env()),
|
||||||
elixir: "~> 1.9",
|
elixir: "~> 1.9",
|
||||||
|
|
Reference in a new issue