Upgrade to 0.1.0-rc4

This commit is contained in:
Wout De Puysseleir 2023-02-25 18:41:18 -08:00
parent ad0581f7e3
commit ebb32b4af6
No known key found for this signature in database
GPG key ID: 3DE9371B50FEC46A
3 changed files with 6 additions and 4 deletions

View file

@ -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 @@
<!-- MDOC -->
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
```

View file

@ -6,6 +6,8 @@ defmodule LiveSvelte do
|> String.split("<!-- MDOC -->")
|> Enum.fetch!(1)
@moduledoc since: "0.1.0-rc4"
use Phoenix.LiveComponent
import Phoenix.HTML

View file

@ -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