From ae45a42f96b885b267881cc326393dcb69d3d930 Mon Sep 17 00:00:00 2001 From: Chris McCord Date: Mon, 17 Jun 2024 15:02:04 -0400 Subject: [PATCH] Release 0.2.0 --- CHANGELOG.md | 8 ++++++++ mix.exs | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 733e041..1258421 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.2.0 (2024-06-17) + +### Backwards incompatible changes +- For backend implementations, the `FLAME.Parent` encoded format has changed to include more information about the parent and child. See `FLAME.Parent` moduledoc for more information. + +### Enhancements +- Add `:code_sync` pool configuration for syncing beam files and code paths to flames + ## 0.1.12 (2024-03-14) - Support `link: false` on `FLAME.call/3`, `FLAME.cast/3`, and `FLAME.place_child/3` for opt-in allowance of long-running FLAME operations (up to `:shutdown_timeout`) regardless of what happens to the caller process or caller node. diff --git a/mix.exs b/mix.exs index 6b452c9..5834ac2 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule FLAME.Runner.MixProject do def project do [ app: :flame, - version: "0.1.12", + version: "0.2.0", elixir: "~> 1.15", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,