diff --git a/README.md b/README.md index 0c25876..03e6f76 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ # LiveSvelte +Render Svelte directly into Phoenix LiveView with E2E reactivity. + ![logo](https://github.com/woutdp/live_svelte/blob/master/logo.png?raw=true) [Installation](#installation) • @@ -11,8 +13,6 @@ -Render Svelte directly into Phoenix LiveView with E2E reactivity. - ## Features - Server-Side Rendered (SSR) Svelte @@ -48,7 +48,7 @@ Add `live_svelte` to your list of dependencies in `mix.exs`: ```elixir def deps do [ - {:live_svelte, "~> 0.1.0-rc3"} + {:live_svelte, "~> 0.1.0-rc4"} ] end ``` diff --git a/lib/live_component.ex b/lib/live_component.ex index c8116ac..6ef925a 100644 --- a/lib/live_component.ex +++ b/lib/live_component.ex @@ -6,6 +6,8 @@ defmodule LiveSvelte do |> String.split("") |> Enum.fetch!(1) + @moduledoc since: "0.1.0-rc4" + use Phoenix.LiveComponent import Phoenix.HTML diff --git a/mix.exs b/mix.exs index 1821f2c..d358b14 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule LiveSvelte.MixProject do use Mix.Project - @version "0.1.0-rc3" + @version "0.1.0-rc4" @repo_url "https://github.com/woutdp/live_svelte" def project do