Skip to content

Commit

Permalink
v0.4.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
fhunleth committed Jul 26, 2020
1 parent 1314869 commit dedb157
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v0.4.2

* New feature
* Added `NervesTime.set_system_time/1` to manually set the system clock.
Thanks to Eric Rauer for this.

## v0.4.1

* Bug fixes
Expand Down
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.4.1"}
{:nerves_time, "~> 0.4.2"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion lib/nerves_time/sane_time.ex
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule NervesTime.SaneTime do
# One of the ways that nerves_time determines whether a particular time is
# possible is whether it's in a known good range.

@default_earliest_time ~N[2020-05-21 00:00:00]
@default_earliest_time ~N[2020-07-25 00:00:00]
@default_latest_time %{@default_earliest_time | year: @default_earliest_time.year + 20}

@moduledoc false
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule NervesTime.MixProject do
use Mix.Project

@version "0.4.1"
@version "0.4.2"
@source_url "https://github.com/nerves-time/nerves_time"

def project do
Expand Down

0 comments on commit dedb157

Please sign in to comment.