Skip to content

Commit 626c86f

Browse files
v1.7.0 release
1 parent dbab272 commit 626c86f

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

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+
324
## 1.6.3
425

526
* Enhancements

mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Nerves.Bootstrap.Mixfile do
22
use Mix.Project
33

4-
@version "1.6.3"
4+
@version "1.7.0"
55
@source_url "https://github.com/nerves-project/nerves_bootstrap"
66

77
def project do

0 commit comments

Comments
 (0)