Bump v0.6.0-rc.1

This commit is contained in:
Mitchell Hanberg 2021-05-13 00:31:00 -04:00
parent 5150a93e38
commit 0b55cf1cec
2 changed files with 13 additions and 1 deletions

View file

@ -4,6 +4,18 @@
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
- Can pass a keyword list to be evaluated at runtime as attrs/assigns to an element.

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-rc.0",
version: "0.6.0-rc.1",
package: package(),
elixirc_paths: elixirc_paths(Mix.env()),
elixir: "~> 1.9",