From bb82bb5af6adafdf8ab92c63f85b4854090a8531 Mon Sep 17 00:00:00 2001 From: Jon Carstens Date: Fri, 12 Jul 2024 09:27:48 -0600 Subject: [PATCH] v0.4.0 release --- CHANGELOG.md | 11 +++++++++++ mix.exs | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) 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