Skip to content

Commit

Permalink
v0.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
fhunleth committed Aug 12, 2018
1 parent 62c2340 commit 7823f5b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## v0.2.0

* Added support for configuring NTP servers at runtime. Thanks to @ConnorRigby
for sending a PR for this
* Added `Nerves.Time.restart_ntpd/0` for users who know external information
about good times to bounce the NTP daemon so that it syncs more quickly
* Fixed naming of `is_synchronized/0` to be `synchronized?/0`. Thanks to
@brodeuralexis for catching my slip.

## v0.1.0

Initial release
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ First add `nerves_time` to your project's dependencies:
```elixir
def deps do
[
{:nerves_time, "~> 0.1.0"}
{:nerves_time, "~> 0.2"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Nerves.Time.MixProject do
def project do
[
app: :nerves_time,
version: "0.1.0",
version: "0.2.0",
elixir: "~> 1.6",
start_permanent: Mix.env() == :prod,
compilers: [:elixir_make | Mix.compilers()],
Expand Down

0 comments on commit 7823f5b

Please sign in to comment.