chore: Bump v0.11.0

This commit is contained in:
Mitchell Hanberg 2023-01-21 07:02:11 -05:00
parent 0879bfb793
commit 9a24ff85cb
No known key found for this signature in database
3 changed files with 7 additions and 4 deletions

View File

@ -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.

View File

@ -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
```

View File

@ -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()
]