Skip to content

Commit

Permalink
Release v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
msaraiva committed Jan 13, 2022
1 parent e84edba commit 9fe00d3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## v0.7.0 (2022-01-13)

* Support Liveview `v0.17`
* Support rendering `.sface` templates for regular (dead) views (#543)
* Support passing properties to slots using the shorthand format, e.g. `<:col label="Name">`
* Add built-in formatter supporting integration with `mix format` (#535)
* New `<LiveComponent>` component to inject dynamic live components (#518)
* Optimize rendering of HTML class attributes literals so they can be treated as static text
* Add property `for` to `<#slot/>` so it can render the slot content directly (without using `index`)

## v0.6.1 (2021-10-26)

* Add `surface_formatter` dependency to `mix.exs` when running `mix surface.init` (#507)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Add `surface` to the list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:surface, "~> 0.6.1"}
{:surface, "~> 0.7.0"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Surface.MixProject do
use Mix.Project

@version "0.7.0-dev"
@version "0.7.0"

def project do
[
Expand Down

0 comments on commit 9fe00d3

Please sign in to comment.