File tree 2 files changed +22
-1
lines changed
2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.7.0
4
+
5
+ * Enhancements
6
+ * Improved support for reproducible builds in new projects by setting
7
+ ` source_date_epoch ` . Existing projects can add this to the ` :nerves ` config.
8
+
9
+ For example:
10
+
11
+ ``` elixir
12
+ config :nerves , source_date_epoch: " 1577467691"
13
+ ```
14
+
15
+ * Added support for generating new projects using `nerves_pack` instead
16
+ of `nerves_init_gadget`. See [nerves_pack](https: // github.com/ nerves- project/ nerves_pack) for more information.
17
+
18
+ For example:
19
+
20
+ ```bash
21
+ mix nerves.new my_app -- nerves- pack
22
+ ```
23
+
3
24
## 1.6.3
4
25
5
26
* Enhancements
Original file line number Diff line number Diff line change 1
1
defmodule Nerves.Bootstrap.Mixfile do
2
2
use Mix.Project
3
3
4
- @ version "1.6.3 "
4
+ @ version "1.7.0 "
5
5
@ source_url "https://github.com/nerves-project/nerves_bootstrap"
6
6
7
7
def project do
You can’t perform that action at this time.
0 commit comments