changed
CHANGELOG.md
|
@@ -5,6 +5,15 @@ See [Conventional Commits](Https:https://conventionalcommits.org) for commit guideline
|
5
5
|
|
6
6
|
<!-- changelog -->
|
7
7
|
|
8
|
+ ## [v0.3.2](https://github.com/frankdugan3/pyro/compare/v0.3.1...v0.3.2) (2024-01-18)
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+ ### Bug Fixes:
|
14
|
+
|
15
|
+ * remove stray unquote
|
16
|
+
|
8
17
|
## [v0.3.1](https://github.com/frankdugan3/pyro/compare/v0.3.0...v0.3.1) (2024-01-18)
|
changed
documentation/tutorials/get-started.md
|
@@ -15,7 +15,7 @@ These steps assume you are adding Pyro to an existing Phoenix LiveView app, as g
|
15
15
|
```elixir
|
16
16
|
def deps do
|
17
17
|
[
|
18
|
- {:pyro, "~> 0.3.1"},
|
18
|
+ {:pyro, "~> 0.3.2"},
|
19
19
|
|
20
20
|
### OPTIONAL DEPS BELOW ###
|
changed
hex_metadata.config
|
@@ -1,6 +1,6 @@
|
1
1
|
{<<"links">>,[{<<"GitHub">>,<<"https://github.com/frankdugan3/pyro">>}]}.
|
2
2
|
{<<"name">>,<<"pyro">>}.
|
3
|
- {<<"version">>,<<"0.3.1">>}.
|
3
|
+ {<<"version">>,<<"0.3.2">>}.
|
4
4
|
{<<"description">>,<<"Component tooling for Phoenix.">>}.
|
5
5
|
{<<"elixir">>,<<"~> 1.16">>}.
|
6
6
|
{<<"app">>,<<"pyro">>}.
|
changed
lib/pyro/live_component.ex
|
@@ -19,7 +19,7 @@ defmodule Pyro.LiveComponent do
|
19
19
|
@before_compile Phoenix.LiveView.Renderer
|
20
20
|
|
21
21
|
# Pyro.Component must come last so its @before_compile runs last
|
22
|
- use Pyro.Component, unquote(opts)
|
22
|
+ use Pyro.Component, opts
|
23
23
|
|
24
24
|
@doc false
|
25
25
|
def __live__, do: %{kind: :component, module: __MODULE__, layout: false}
|
changed
mix.exs
|
@@ -3,7 +3,7 @@ defmodule Pyro.MixProject do
|
3
3
|
use Mix.Project
|
4
4
|
|
5
5
|
@source_url "https://github.com/frankdugan3/pyro"
|
6
|
- @version "0.3.1"
|
6
|
+ @version "0.3.2"
|
7
7
|
@description """
|
8
8
|
Component tooling for Phoenix.
|
9
9
|
"""
|