Skip to content

Commit 67cbe51

Browse files
Bump version to 1.0.0
- Bump version in mix.exs - Update CHANGELOG.md with 1.0.0 release date and missing entries - Update README install example to ~> 1.0 - Add files key to package/0 to avoid publishing unnecessary files
1 parent d13d46c commit 67cbe51

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Next
3+
## 1.0.0 (2026-02-27)
44

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

1416
## 0.7.0
1517

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Add `:flame_on` to your dependencies:
1515
```elixir
1616
def deps do
1717
[
18-
{:flame_on, "~> 0.7.0"}
18+
{:flame_on, "~> 1.0"}
1919
]
2020
end
2121
```

mix.exs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule FlameOn.MixProject do
44
def project do
55
[
66
app: :flame_on,
7-
version: "0.7.0",
7+
version: "1.0.0",
88
elixir: "~> 1.15",
99
elixirc_paths: elixirc_paths(Mix.env()),
1010
start_permanent: Mix.env() == :prod,
@@ -46,6 +46,7 @@ defmodule FlameOn.MixProject do
4646

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

0 commit comments

Comments
 (0)