Skip to content

Commit 07e7f67

Browse files
committed
Release v0.1.6
1 parent 98fb5a7 commit 07e7f67

11 files changed

+18
-10
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## v0.1.6 (2024-09-03)
4+
5+
* Always use PhoenixPlayground.CodeReloader
6+
7+
* Add blank favicon to layout
8+
9+
* Add `:endpoint` option
10+
311
## v0.1.5 (2024-08-14)
412

513
* Fix live reloading.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Create a `demo_live.exs` file:
1414

1515
```elixir
1616
Mix.install([
17-
{:phoenix_playground, "~> 0.1.5"}
17+
{:phoenix_playground, "~> 0.1.6"}
1818
])
1919

2020
defmodule DemoLive do

examples/demo_controller.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env elixir
22
Mix.install([
3-
{:phoenix_playground, "~> 0.1.5"}
3+
{:phoenix_playground, "~> 0.1.6"}
44
])
55

66
defmodule DemoController do

examples/demo_controller_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env elixir
22
Mix.install([
3-
{:phoenix_playground, "~> 0.1.5"}
3+
{:phoenix_playground, "~> 0.1.6"}
44
])
55

66
defmodule DemoController do

examples/demo_hooks.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env elixir
22
Mix.install([
3-
{:phoenix_playground, "~> 0.1.5"}
3+
{:phoenix_playground, "~> 0.1.6"}
44
])
55

66
defmodule DemoHooks do

examples/demo_live.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env elixir
22
Mix.install([
3-
{:phoenix_playground, "~> 0.1.5"}
3+
{:phoenix_playground, "~> 0.1.6"}
44
])
55

66
defmodule DemoLive do

examples/demo_live.livemd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
```elixir
44
Mix.install([
5-
{:phoenix_playground, "~> 0.1.5"}
5+
{:phoenix_playground, "~> 0.1.6"}
66
])
77
```
88

examples/demo_live_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env elixir
22
Mix.install([
3-
{:phoenix_playground, "~> 0.1.5"}
3+
{:phoenix_playground, "~> 0.1.6"}
44
])
55

66
defmodule DemoLive do

examples/demo_plug.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env elixir
22
Mix.install([
3-
{:phoenix_playground, "~> 0.1.5"}
3+
{:phoenix_playground, "~> 0.1.6"}
44
])
55

66
PhoenixPlayground.start(

examples/demo_router.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env elixir
22
Mix.install([
3-
{:phoenix_playground, "~> 0.1.5"}
3+
{:phoenix_playground, "~> 0.1.6"}
44
])
55

66
defmodule CounterLive do

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defmodule PhoenixPlayground.MixProject do
22
use Mix.Project
33

44
@source_url "https://github.com/phoenix-playground/phoenix_playground"
5-
@version "0.1.5"
5+
@version "0.1.6"
66

77
def project do
88
[

0 commit comments

Comments
 (0)