Skip to content

Commit 11ffde9

Browse files
v1.0.0-rc.1
1 parent a36d1e4 commit 11ffde9

File tree

2 files changed

+39
-15
lines changed

2 files changed

+39
-15
lines changed

CHANGELOG.md

+38-14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## v1.0.0-rc.1
4+
5+
* Bug fixes
6+
* Various `mix format` updates to the template
7+
* Update template so that projects use v1.0.0-rc system releases so that they
8+
compile
9+
* Fix archive update check logic
10+
311
## v1.0.0-rc.0
412

513
Nerves no longer automatically compiles any `nerves_package` that is missing
@@ -18,9 +26,9 @@ the desired package in your top level project:
1826

1927
## v0.8.1
2028

21-
* Bug Fixes
22-
* `deps.get` and `deps.update` aliases should always be added to the
23-
project regardless of target.
29+
* Bug Fixes
30+
* `deps.get` and `deps.update` aliases should always be added to the
31+
project regardless of target.
2432

2533
## v0.8.0
2634

@@ -64,6 +72,7 @@ This release has the following changes:
6472
artifacts.
6573

6674
## v0.7.0
75+
6776
* Enhancements
6877
* Added Mix task `nerves.deps.get`
6978
* `nerves_bootstrap` will check for updates when `nerves.deps.get` is called.
@@ -94,17 +103,20 @@ This release has the following changes:
94103
cross compile environment.
95104

96105
## v0.6.4
106+
97107
* Enhancements
98108
* Changed update location from Github to hex.pm
99109
* Fixed compiler warning
100110
* Synchronize new project template with Elixir 1.6 updates (includes formatter)
101111

102112
## v0.6.3
113+
103114
* Enhancements
104115
* Removed unsupported systems from default targets and added x86_64.
105116
* Moved to independent hex package.
106117

107118
## v0.6.2
119+
108120
* Enhancements
109121
* [mix nerves.new] Use the new `rootfs_overlay` option
110122
rather than the deprecated `rootfs_additions` option and also recommend
@@ -116,6 +128,7 @@ This release has the following changes:
116128
configured before importing target specific configuration.
117129

118130
## v0.6.1
131+
119132
* Enhancements
120133
* Improved error messages in `nerves.system.shell` Mix task. In particular,
121134
it now reminds you to set `MIX_TARGET`.
@@ -125,6 +138,7 @@ This release has the following changes:
125138
* Fix extraneous whitespace in `mix.exs` generated by `mix nerves.new`
126139

127140
## v0.6.0
141+
128142
* Enhancements
129143
* New `nerves.system.shell` Mix task, which provides a consistent way to
130144
configure a Buildroot-based Nerves system on both OSX and Linux. This
@@ -141,10 +155,12 @@ This release has the following changes:
141155
state.
142156

143157
## v0.5.1
158+
144159
* Bug Fixes
145160
* System dependencies were not being built in order when system is the parent project
146161

147162
## v0.5.0
163+
148164
* Enhancements
149165
* Pass +Bc in vm.args to avoid accidental CTRL+C
150166
* Update deps and loosen version requirements
@@ -153,6 +169,7 @@ This release has the following changes:
153169
* Choose the right compiler when parent project is a Nerves system package
154170

155171
## v0.4.0
172+
156173
* Enhancements
157174
* nerves.new
158175
* lock files are split by target
@@ -163,10 +180,12 @@ This release has the following changes:
163180
be set by passing `--cookie`
164181

165182
## v0.3.1
166-
* Bug Fixes
167-
* Added support for OTP 20: Fixes issue with RegEx producing false positives.
183+
184+
* Bug Fixes
185+
* Added support for OTP 20: Fixes issue with RegEx producing false positives.
168186

169187
## v0.3.0
188+
170189
* Enhancements
171190
* nerves.new
172191
* defaults to Host target env
@@ -177,27 +196,32 @@ This release has the following changes:
177196
* removed rel/.gitignore from new project generator
178197

179198
## v0.2.2
199+
180200
* Enhancements
181201
* Added `mix local.nerves` for updating the bootstrap archive
182202

183203
## v0.2.1
204+
184205
* Bug Fixes
185206
* update nerves dep in new project generator to 0.4.0
186207
* Enhancements
187208
* Additional debug output when setting `NERVES_DEBUG=1`
188209
* Ability to output information about the loaded Nerves env via `mix nerves.env --info`
189210

190211
## v0.2.0
191-
* Enhancements
192-
* Support for nerves_package compiler
212+
213+
* Enhancements
214+
* Support for nerves_package compiler
193215

194216
## v0.1.4
195-
* Bug Fixes
196-
* Do not warn on import Supervisor.Spec
197-
* Silence alias location messages unless NERVES_DEBUG=1
198-
* Enhancements
199-
* Support for Elixir 1.3.2
217+
218+
* Bug Fixes
219+
* Do not warn on import Supervisor.Spec
220+
* Silence alias location messages unless NERVES_DEBUG=1
221+
* Enhancements
222+
* Support for Elixir 1.3.2
200223

201224
## v0.1.3
202-
* Enhancements
203-
* Support for elixir ~> 1.3.0-rc.0
225+
226+
* Enhancements
227+
* Support for elixir ~> 1.3.0-rc.0

mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule Nerves.Bootstrap.Mixfile do
44
def project do
55
[
66
app: :nerves_bootstrap,
7-
version: "1.0.0-rc.0",
7+
version: "1.0.0-rc.1",
88
elixir: "~> 1.4",
99
aliases: aliases(),
1010
xref: [exclude: [Nerves.Env, Nerves.Artifact]],

0 commit comments

Comments
 (0)