Skip to content

Commit

Permalink
Release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismccord committed Sep 11, 2024
1 parent a34b5bb commit c136736
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.5.0 (2024-09-11)

### Enhancements
- Add `copy_apps` option to `code_sync` to copy all apps in the code path, which is
set to true when `start_apps` is true.
- Support `copy_paths` for arbitrary paths unrelated to beams apps for copying arbitrary
files on boot to the runner.

### Deprecations
- `copy_paths: true` has been deprecated in favor of `start_apps: true`, to copy
all apps and start them. You can also pass `copy_paths: true` to copy all apps
without starting them. Now `copy_paths` is reserved for copying arbitrary paths
unrelated to beams apps.

## 0.4.4 (2024-09-03)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ defp deps do
[
# For Erlang/OTP 26 and earlier, you also need Jason
# {:jason, ">= 0.0.0"},
{:flame, "~> 0.2"}
{:flame, "~> 0.5"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule FLAME.Runner.MixProject do
def project do
[
app: :flame,
version: "0.4.4",
version: "0.5.0",
elixir: "~> 1.15",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
Expand Down

0 comments on commit c136736

Please sign in to comment.