From fb5f0a99f4875f45a1ff054acc9d9ce892b7d61b Mon Sep 17 00:00:00 2001 From: Mitchell Hanberg Date: Thu, 3 Jun 2021 23:14:58 -0400 Subject: [PATCH] Bump v0.6.2 --- CHANGELOG.md | 6 ++++++ README.md | 2 +- mix.exs | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d4a528..882f037 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ Nothing yet +## 0.6.2 + +### Bug fixes + +- Compile void elements with zero attrs #135 + ## 0.6.1 ### Bug fixes diff --git a/README.md b/README.md index 1348a8c..c59c1f8 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Add `temple` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:temple, "~> 0.6.1"}, + {:temple, "~> 0.6.2"}, {: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 ] diff --git a/mix.exs b/mix.exs index cff6758..f0182a6 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.1", + version: "0.6.2", package: package(), elixirc_paths: elixirc_paths(Mix.env()), elixir: "~> 1.9",