Commit 9f095cc 1 parent 99b9490 commit 9f095cc Copy full SHA for 9f095cc
File tree 2 files changed +16
-3
lines changed
2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.3.0
4
+
5
+ * New features
6
+ * Enable ` heart ` in the new project generator. This engages both a
7
+ software-based watchdog (Erlang's ` heart ` feature) and a hardware-based one
8
+ on systems that support it. If the Erlang VM becomes unresponsive, one of
9
+ the watchdogs will reboot the processor. See the Erlang ` heart `
10
+ documentation for changing timeouts and adding callbacks to your
11
+ application.
12
+ * Enable ` build_embedded ` . This ensures that C build products are separated
13
+ based on target and prevents many causes of x86 build products ending up
14
+ on ARM targets unintentionally.
15
+
3
16
## 1.2.1
4
17
5
18
* Bug fixes
6
- * Add RingLogger to all deps in new project generator.
19
+ * Add RingLogger to all deps in new project generator.
7
20
This fixes an issue that causes new projects generated with ` --init-gadget `
8
21
to crash on boot running on the host.
9
22
10
23
## 1.2.0
11
24
12
25
Add support for generating new projects with ` nerves_init_gadget ` .
13
- To generate a new project with ` nerves_init_gadget ` included,
26
+ To generate a new project with ` nerves_init_gadget ` included,
14
27
pass ` --init-gadget ` to ` mix nerves.new `
15
28
16
29
For example:
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ defmodule Nerves.Bootstrap.Mixfile do
4
4
def project do
5
5
[
6
6
app: :nerves_bootstrap ,
7
- version: "1.2.1 " ,
7
+ version: "1.3.0 " ,
8
8
elixir: "~> 1.6" ,
9
9
aliases: aliases ( ) ,
10
10
xref: [ exclude: [ Nerves.Env , Nerves.Artifact ] ] ,
You can’t perform that action at this time.
0 commit comments