Skip to content

Commit

Permalink
v0.4.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jjcarstens committed Mar 5, 2025
1 parent 2ee5752 commit 7fa356a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## v0.4.2

* Allow spawning remote shells via `:remsh` option (Thanks @SteffenDE!)
* Attempt to cleanup processes spawned by the underlying shells when
the `ExTTY` process is closed (#14) (Thanks @joshk!)
* This primarily affects `:elixir` shells because the `IEx.Evaluator`
process that gets started by Elixir does lots of monitoring to
attempt to stay up. So even though other shell processes are linked
and closed correctly, the `IEx.Evaluator` process stays running
which can result in many of them running on machines which have
a long uptime and have created multiple `ExTTY` processes over time

## v0.4.1

* Support `:dot_iex` or `:dot_iex_path` option
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule ExTTY.MixProject do
use Mix.Project

@version "0.4.1"
@version "0.4.2"
@source_url "https://github.com/jjcarstens/extty"

def project do
Expand Down

0 comments on commit 7fa356a

Please sign in to comment.