Skip to content

Commit

Permalink
v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Serabe committed Oct 8, 2023
1 parent 1dea7a3 commit 56fda57
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog

## 0.x

### 0.8

- Add support for `:on_mount` option in `live_isolated_component/3`.
- Internal refactor of code.
17 changes: 14 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
defmodule LiveIsolatedComponent.MixProject do
use Mix.Project

@version "0.7.1"
@source_url "https://github.com/Serabe/live_isolated_component"
@version "0.8.0"

def project do
[
Expand All @@ -16,7 +17,8 @@ defmodule LiveIsolatedComponent.MixProject do
version: @version,
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps()
deps: deps(),
docs: docs()
]
end

Expand All @@ -32,7 +34,7 @@ defmodule LiveIsolatedComponent.MixProject do
maintainers: ["Sergio Arbeo"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/Serabe/live_isolated_component"},
files: ~w(lib LICENSE.txt mix.exs README.md),
files: ~w(CHANGELOG.md lib LICENSE.txt mix.exs README.md),
description: "Simple library to test LV components live in isolation"
]
end
Expand All @@ -48,4 +50,13 @@ defmodule LiveIsolatedComponent.MixProject do
{:phoenix_live_view, "~> 0.19.0 or ~> 0.20.0"}
]
end

defp docs do
[
extras: [{:"README.md", [title: "Overview"]}],
main: "readme",
source_url: @source_url,
source_ref: "v#{@version}"
]
end
end

0 comments on commit 56fda57

Please sign in to comment.