v0.7.0
- Enhancements
-
Added Mix task
nerves.deps.get
-
nerves_bootstrap
will check for updates whennerves.deps.get
is called. -
Added
Nerves.Bootstrap.add_aliases/1
This helper function ensures that your project has the required Nerves
mix aliases defined and in the correct execution order. The function takes
the existing aliases as a keyword list and injects the required Nerves aliases.
You will need to update yourmix.exs
target aliases to use this version of
nerves_bootstrap
like this:defp aliases(_target) do [ # Add custom mix aliases here ] |> Nerves.Bootstrap.add_aliases() end
You should also update your required dependency for nerves to
{:nerves, "~> 0.9", runtime: false}
-
- Bug Fixes
- disable precompiler when calling
mix nerves.clean
to prevent having to
build the package so we can clean it. - Fixes issue where project dependencies that contain calls to
System.get_env
in their config or mix file or rebar deps that haverebar-config.script
overrides that makeos:getenv
calls were not being configured for the
cross compile environment.
- disable precompiler when calling