chore: Bump v0.11.0
This commit is contained in:
parent
0879bfb793
commit
9a24ff85cb
3 changed files with 7 additions and 4 deletions
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
## Main
|
## Main
|
||||||
|
|
||||||
|
## v0.11.0
|
||||||
|
|
||||||
### Breaking Changes
|
### 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.
|
- 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.
|
||||||
|
|
|
@ -14,7 +14,7 @@ Add `temple` to your list of dependencies in `mix.exs`:
|
||||||
```elixir
|
```elixir
|
||||||
def deps do
|
def deps do
|
||||||
[
|
[
|
||||||
{:temple, "~> 0.10.0"}
|
{:temple, "~> 0.11.0"}
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
```
|
```
|
||||||
|
|
7
mix.exs
7
mix.exs
|
@ -6,7 +6,7 @@ defmodule Temple.MixProject do
|
||||||
app: :temple,
|
app: :temple,
|
||||||
name: "Temple",
|
name: "Temple",
|
||||||
description: "An HTML DSL for Elixir",
|
description: "An HTML DSL for Elixir",
|
||||||
version: "0.10.0",
|
version: "0.11.0",
|
||||||
package: package(),
|
package: package(),
|
||||||
elixirc_paths: elixirc_paths(Mix.env()),
|
elixirc_paths: elixirc_paths(Mix.env()),
|
||||||
elixir: "~> 1.13",
|
elixir: "~> 1.13",
|
||||||
|
@ -19,7 +19,7 @@ defmodule Temple.MixProject do
|
||||||
|
|
||||||
# Specifies which paths to compile per environment.
|
# Specifies which paths to compile per environment.
|
||||||
defp elixirc_paths(:test) do
|
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
|
# test/support
|
||||||
Code.put_compiler_option(
|
Code.put_compiler_option(
|
||||||
:parser_options,
|
:parser_options,
|
||||||
|
@ -47,7 +47,8 @@ defmodule Temple.MixProject do
|
||||||
"guides/your-first-template.md",
|
"guides/your-first-template.md",
|
||||||
"guides/components.md",
|
"guides/components.md",
|
||||||
"guides/converting-html.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()
|
groups_for_extras: groups_for_extras()
|
||||||
]
|
]
|
||||||
|
|
Reference in a new issue