Elixir v1.18.0 released

In case you want to go even deeper, you can note that previously, if you did this:

  1. Started iex -S mix
  2. Changed a file
  3. Called mix compile
  4. Called recompile() in IEx

recompile() would not pick up the new module at all, because it had already been compiled. Elixir v1.18 makes it so recompile() works consistently AND adds the auto_reload option. Overall, it is all about playing better with multiple OS processes. :slight_smile:

10 Likes