Skip to content

Commit

Permalink
v1.5.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mobileoverlord committed Nov 19, 2019
1 parent 9a1675d commit 991ed2b
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# Changelog

## v1.5.2

* Enhancements
* erlinit.config options can be overridden using the application config now.
For example, in your config.exs you can now add:

```elixir
config :nerves, :erlinit,
ctty: "ttyAMA0"
```
* Nerves tooling now supports setting the SOURCE_DATE_EPOCH environment
variable for reproducible builds during compilation via `:source_date_epoch`
in your application config. This removes timestamp differences between
builds. See [reproducible-builds.org](https://reproducible-builds.org/) for more information.
* Windows Subsystem for Linux improvements
* Support XDG_DATA_HOME. If XDG_DATA_HOME is set, Nerves will now store its
data under that directory.

* Bug fixes
* Do not require sudo on `mix burn` if already privileged.
* Keep all boot scripts. Previously, extraneous boot scripts from the OTP
release process were removed. Keeping them makes it possible to start
Erlang slave nodes and support use cases where triggers at device boot
time launch different scripts.

## v1.5.1

* Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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.5.1",
version: "1.5.2",
elixir: "~> 1.6.0 or ~> 1.7.3 or ~> 1.8",
elixirc_paths: elixirc_paths(Mix.env()),
deps: deps(),
Expand Down

0 comments on commit 991ed2b

Please sign in to comment.