diff --git a/CHANGELOG.md b/CHANGELOG.md index 42df76e..b499755 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog Every release has a corresponding tag. Use `main` branch for fresh-from-the-oven code. +## 1.2.2 + - Bugfix enabling recursive power_shell invocations + ## 1.2.1 - Bugfix for configurable -on_load() support diff --git a/README.md b/README.md index 791413c..fbc095d 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ For Elixir, the package can be installed by adding `power_shell` to your list of ```elixir def deps do [ - {:power_shell, "~> 1.2.1"} + {:power_shell, "~> 1.2.2"} ] end ``` @@ -27,7 +27,7 @@ For Erlang, the package can be installed by adding `power_shell` to your list of ```erlang {deps, [ - {power_shell, "1.2.1"} + {power_shell, "1.2.2"} ]}. ``` diff --git a/src/power_shell.app.src b/src/power_shell.app.src index 66730f3..4e9b771 100644 --- a/src/power_shell.app.src +++ b/src/power_shell.app.src @@ -1,6 +1,6 @@ {application, power_shell, [{description, "Erlang shell extension allowing to evaluate non-exported functions"}, - {vsn, "1.2.1"}, + {vsn, "1.2.2"}, {registered, [power_shell_cache]}, {mod, {power_shell_app, []}}, {applications,