From 0b55cf1cecdc59c2ed6677a0a8c93f53e92d44a7 Mon Sep 17 00:00:00 2001 From: Mitchell Hanberg Date: Thu, 13 May 2021 00:31:00 -0400 Subject: [PATCH] Bump v0.6.0-rc.1 --- CHANGELOG.md | 12 ++++++++++++ mix.exs | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd39cba..0018735 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/mix.exs b/mix.exs index 572a79b..8f98360 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-rc.0", + version: "0.6.0-rc.1", package: package(), elixirc_paths: elixirc_paths(Mix.env()), elixir: "~> 1.9",