diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b14482..d8fefd5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## v0.4.0 + +* Adds support for Elixir 1.17 + * This required using a different entry point into IEx and + adjusts the shape of `:shell_opts` to be a flat keyword list + * Elixir also renamed `:dot_iex_path` -> `:dot_iex`. The changes + here account for that for now, but if you previously included + this in options you'll need to change from + `shell_opts: [[dot_iex_path: path]]` to `shell_opts: [dot_iex: path]` +* Minimum supported Elixir version is now 1.13 + ## v0.3.0 * Support Elixir 1.15 / OTP 26 with backwards compatibility diff --git a/mix.exs b/mix.exs index ea8d1e6..9c73aaf 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule ExTTY.MixProject do use Mix.Project - @version "0.3.0" + @version "0.4.0" @source_url "https://github.com/jjcarstens/extty" def project do