Skip to content

Commit cbb6fb1

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 6759a7e commit cbb6fb1

7 files changed

Lines changed: 13 additions & 3 deletions

File tree

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
```

config/config.exs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
import Config
22

33
config :phoenix, :json_library, Jason
4+
5+
import_config "#{config_env()}.exs"

config/dev.exs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import Config

config/prod.exs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import Config

config/test.exs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import Config
2+
3+
config :logger, level: :warning

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)