diff --git a/CHANGELOG.md b/CHANGELOG.md index 1745dbb..7434a2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Main +## v0.11.0 + ### Breaking Changes - Rendering slots is now done by passing the assign with the slot name to the `slot` keyword instead of name as an atom. If this slot has multiple definitions, you can loop through them and render each one individually, or render them all at once. Please see the migration guide for more information. diff --git a/README.md b/README.md index ce978a8..4c2f457 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Add `temple` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:temple, "~> 0.10.0"} + {:temple, "~> 0.11.0"} ] end ``` diff --git a/mix.exs b/mix.exs index 7514e09..1756c7a 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", - version: "0.10.0", + version: "0.11.0", package: package(), elixirc_paths: elixirc_paths(Mix.env()), elixir: "~> 1.13", @@ -19,7 +19,7 @@ defmodule Temple.MixProject do # Specifies which paths to compile per environment. defp elixirc_paths(:test) do - # hack to get the right compiler options used on the non-script files in + # hack to get the right compiler options used on the non-script files in # test/support Code.put_compiler_option( :parser_options, @@ -47,7 +47,8 @@ defmodule Temple.MixProject do "guides/your-first-template.md", "guides/components.md", "guides/converting-html.md", - "guides/migrating/0.8-to-0.9.md" + "guides/migrating/0.8-to-0.9.md", + "guides/migrating/0.10-to-0.11.md" ], groups_for_extras: groups_for_extras() ]