Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Next
## 1.0.0 (2026-02-27)

- Upgrade LiveView to v1.0
- Update Elixir and Erlang versions
Expand All @@ -10,6 +10,8 @@
- Add comprehensive tests
- Widen gettext dependency to support 0.21.x and 1.0.x
- Fix flaky test caused by missing meck cleanup in CaptureSchemaTest
- Fix black flame graph blocks in Firefox
- Fix inline style to resolve LiveDashboard CSP issues

## 0.7.0

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Add `:flame_on` to your dependencies:
```elixir
def deps do
[
{:flame_on, "~> 0.7.0"}
{:flame_on, "~> 1.0"}
]
end
```
Expand Down
3 changes: 2 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule FlameOn.MixProject do
def project do
[
app: :flame_on,
version: "0.7.0",
version: "1.0.0",
elixir: "~> 1.15",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
Expand Down Expand Up @@ -46,6 +46,7 @@ defmodule FlameOn.MixProject do

defp package do
[
files: ~w(lib mix.exs README.md LICENSE.md CHANGELOG.md),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/DockYard/flame_on"}
]
Expand Down