Bump version

This commit is contained in:
Wout De Puysseleir 2023-03-09 09:39:53 -08:00
parent c51c55ea06
commit 4cc3c79eb0
No known key found for this signature in database
GPG key ID: 3DE9371B50FEC46A
3 changed files with 2 additions and 11 deletions

View file

@ -49,7 +49,7 @@ LiveSvelte builds on top of Phoenix LiveView to allow for easy client side state
```elixir
defp deps do
[
{:live_svelte, "~> 0.2.0-rc0"}
{:live_svelte, "~> 0.2.0"}
]
end
```

View file

@ -1,13 +1,4 @@
defmodule LiveSvelte do
@external_resource readme = Path.join([__DIR__, "../README.md"])
@moduledoc readme
|> File.read!()
|> 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.2.0-rc0"
@version "0.2.0"
@repo_url "https://github.com/woutdp/live_svelte"
def project do