diff --git a/CHANGELOG.md b/CHANGELOG.md index ebac6205..6fd0a51a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,11 +8,12 @@ > > - You can also [sponsor me](https://github.com/sponsors/cblavier), as it would enable me to dedicate my free time to fixing bugs and > developing new features 🤗 -## v0.6.0 (not released) +## v0.6.0 (2024-01-05) - **change (breaking!)**: all css `lsb-` prefixes have been renamed to `psb-` (matching `live storybook` renaming to `phoenix storybook`). - **change (breaking!)**: [`assign` and `toggle` events have been prefixed with `psb-`](https://github.com/phenixdigital/phoenix_storybook/issues/395) (cf. `components.md` guide) - **feature**: [render any stories with the new :one_column layout](https://github.com/phenixdigital/phoenix_storybook/issues/296) +- **improvement**: fixed compatibility with phoenix_html_helpers - **improvement**: [function components use iframe srcdoc](https://github.com/phenixdigital/phoenix_storybook/pull/382). - **improvement**: [Content-Security-Policy (CSP) support](https://github.com/phenixdigital/phoenix_storybook/issues/149). Special thanks to [Gaia](https://github.com/gaiabeatrice) for the PR 🙏 - **improvement**: [CSRF token is optional](https://github.com/phenixdigital/phoenix_storybook/issues/340) diff --git a/README.md b/README.md index 3139fa54..6e0e4c51 100644 --- a/README.md +++ b/README.md @@ -56,13 +56,13 @@ Add the following to your mix.exs and run mix deps.get: ```elixir def deps do [ - {:phoenix_storybook, "~> 0.5.0"} + {:phoenix_storybook, "~> 0.6.0"} ] end ``` > [!IMPORTANT] -> +> > When picking a github version of the library (instead of an official hex.pm release) you > need the get the storybook's assets compiled. > To do so, please run `mix dev.storybook`. diff --git a/mix.exs b/mix.exs index ae2774a5..203868a6 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule PhoenixStorybook.MixProject do use Mix.Project - @version "0.5.7" + @version "0.6.0" def project do [