diff --git a/CHANGELOG.md b/CHANGELOG.md index ad18057b..77e5e454 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## v1.4.3 + +* Bug fixes + * Raise an exception if the artifact cache fails to create a directory + * Fixes `ArgumentError` when using OTP >= 21.3.0 and calling `mix nerves.system.shell` + * Fixes issue with `mix nerves.system.shell` using `asdf` >= 0.7.0 where the + path would contain `::` and Buildroot would raise the error: + + ```text + You seem to have the current working directory in your + PATH environment variable. This doesn't work. + support/dependencies/dependencies.mk:21: recipe for target 'dependencies' failed + ``` + ## v1.4.2 * Improvements diff --git a/mix.exs b/mix.exs index 49463566..df733eb0 100644 --- a/mix.exs +++ b/mix.exs @@ -7,7 +7,7 @@ defmodule Nerves.Mixfile do name: "Nerves", source_url: "https://github.com/nerves-project/nerves", homepage_url: "http://nerves-project.org/", - version: "1.4.2", + version: "1.4.3", elixir: "~> 1.6.0 or ~> 1.7.3 or ~> 1.8", elixirc_paths: elixirc_paths(Mix.env()), deps: deps(),