Skip to content

Commit

Permalink
v1.0.0-rc.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
fhunleth authored and mobileoverlord committed Mar 19, 2018
1 parent b30d487 commit 1632a24
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,30 @@

## v1.0.0-rc.1

This rc contains documentation cleanup and updates through out.

* Enhancements
* Support forwarding the ssh-agent through Docker for the Nerves system shell.
* Allow headers and query params to be passed to the `:prefix` `artifact_sites`
helper.

Example:
`{:prefix, "https://my_server.com/", headers: [{"Authorization", "Basic 1234"}]}`
`{:prefix, "https://my_server.com/", query_params: %{"id" => "1234"}}`

* Added `github_api`to `artifact_sites` for accessing release artifacts on private
github repositories.

Example:
`{:github_api, "owner/repo", username: "skroob", token: "1234567", tag: "v0.1.0"}`

* Bug Fixes
* Disable the nerves_package compiler if the `NERVES_ENV_DISABLED` is set.
This makes it easier to execute `mix` tasks without building the system.

Example:
`NERVES_ENV_DISABLED=1 mix docs`

## v1.0.0-rc.0

Nerves no longer automatically compiles any `nerves_package` that is missing its
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ defmodule Nerves.Mixfile do
name: "Nerves",
source_url: "https://github.com/nerves-project/nerves",
homepage_url: "http://nerves-project.org/",
version: "1.0.0-rc.0",
version: "1.0.0-rc.1",
elixir: "~> 1.4",
elixirc_paths: elixirc_paths(Mix.env()),
deps: deps(),
Expand Down

0 comments on commit 1632a24

Please sign in to comment.