Bump v0.6.0-rc.1
This commit is contained in:
parent
5150a93e38
commit
0b55cf1cec
2 changed files with 13 additions and 1 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -4,6 +4,18 @@
|
||||||
|
|
||||||
Nothing Yet
|
Nothing Yet
|
||||||
|
|
||||||
|
## 0.6.0-rc.1
|
||||||
|
|
||||||
|
### Enhancements
|
||||||
|
|
||||||
|
- Components can now use slots.
|
||||||
|
- Markup is 100% live view compliant.
|
||||||
|
|
||||||
|
### Breaking
|
||||||
|
|
||||||
|
- `@inner_content` is removed in favor of invoking the default slot.
|
||||||
|
- The `compact` reserved keyword for elements has been removed. This is not really intentional, just a side effect of getting slots to a usable place. I expect to add it back, or at least similar functionality in the future.
|
||||||
|
|
||||||
## 0.6.0-rc.0
|
## 0.6.0-rc.0
|
||||||
|
|
||||||
- Can pass a keyword list to be evaluated at runtime as attrs/assigns to an element.
|
- Can pass a keyword list to be evaluated at runtime as attrs/assigns to an element.
|
||||||
|
|
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-rc.0",
|
version: "0.6.0-rc.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