Skip to content

Commit

Permalink
chore: Bump v0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mhanberg committed Jan 21, 2023
1 parent 0879bfb commit 9a24ff8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down
7 changes: 4 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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,
Expand Down Expand Up @@ -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()
]
Expand Down

0 comments on commit 9a24ff8

Please sign in to comment.