Current section

80 Versions

Jump to

Compare versions

4 files changed
+19 additions
-10 deletions
  @@ -12,6 +12,16 @@ follows:
12 12 releases, and Linux kernel updates. They're also made to fix bugs and add
13 13 features to the build infrastructure.
14 14
15 + ## v0.28.1
16 +
17 + This is a security/bug fix release.
18 +
19 + * Package updates
20 + * [Erlang/OTP 27.3.4.1](https://erlang.org/download/OTP-27.3.4.1.README.md)
21 + * [Buildroot 2025.02.3 (fixed 2025.02.2)](https://lore.kernel.org/buildroot/49d039c0-8121-4a91-8a69-889376f85c71@rnout.be/T/)
22 + * [erlinit 1.14.3](https://github.com/nerves-project/erlinit/releases/tag/v1.14.3)
23 + * [fwup 1.13.0](https://github.com/fwup-home/fwup/releases/tag/v1.13.0)
24 +
15 25 ## v0.28.0
16 26
17 27 This is a major Buildroot update.
  @@ -1 +1 @@
1 - 0.28.0
1 + 0.28.1
  @@ -3,7 +3,7 @@
3 3 {<<"REUSE Compliance">>,
4 4 <<"https://api.reuse.software/info/github.com/nerves-project/nerves_system_vultr">>}]}.
5 5 {<<"name">>,<<"nerves_system_vultr">>}.
6 - {<<"version">>,<<"0.28.0">>}.
6 + {<<"version">>,<<"0.28.1">>}.
7 7 {<<"description">>,<<"Nerves System - Vultr">>}.
8 8 {<<"elixir">>,<<"~> 1.17">>}.
9 9 {<<"app">>,<<"nerves_system_vultr">>}.
  @@ -29,7 +29,7 @@
29 29 [{<<"name">>,<<"nerves_system_br">>},
30 30 {<<"app">>,<<"nerves_system_br">>},
31 31 {<<"optional">>,false},
32 - {<<"requirement">>,<<"1.31.0">>},
32 + {<<"requirement">>,<<"1.31.3">>},
33 33 {<<"repository">>,<<"hexpm">>}],
34 34 [{<<"name">>,<<"nerves_toolchain_x86_64_nerves_linux_musl">>},
35 35 {<<"app">>,<<"nerves_toolchain_x86_64_nerves_linux_musl">>},
  @@ -20,12 +20,7 @@ defmodule NervesSystemVultr.MixProject do
20 20 package: package(),
21 21 deps: deps(),
22 22 aliases: [loadconfig: [&bootstrap/1]],
23 - docs: docs(),
24 - preferred_cli_env: %{
25 - docs: :docs,
26 - "hex.build": :docs,
27 - "hex.publish": :docs
28 - }
23 + docs: docs()
29 24 ]
30 25 end
31 26
  @@ -39,6 +34,10 @@ defmodule NervesSystemVultr.MixProject do
39 34 Mix.Task.run("loadconfig", args)
40 35 end
41 36
37 + def cli do
38 + [preferred_envs: %{docs: :docs, "hex.build": :docs, "hex.publish": :docs}]
39 + end
40 +
42 41 defp nerves_package do
43 42 [
44 43 type: :system,
  @@ -66,7 +65,7 @@ defmodule NervesSystemVultr.MixProject do
66 65 defp deps do
67 66 [
68 67 {:nerves, "~> 1.11", runtime: false},
69 - {:nerves_system_br, "1.31.0", runtime: false},
68 + {:nerves_system_br, "1.31.3", runtime: false},
70 69 {:nerves_toolchain_x86_64_nerves_linux_musl, "~> 13.2.0", runtime: false},
71 70 {:nerves_system_linter, "~> 0.4", only: [:dev, :test], runtime: false},
72 71 {:ex_doc, "~> 0.22", only: :docs, runtime: false}