Skip to content

Commit

Permalink
Prepare the release of 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
DevL committed Jan 22, 2016
1 parent 95a48aa commit 16f9a60
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ iex> import GoodTimes.Date
nil
iex> yesterday
{2015, 3, 15}
iex> tomorrow |> at {12, 30, 0}
iex> tomorrow |> at({12, 30, 0})
{{2015, 3, 17}, {12, 30, 0}}
iex> import GoodTimes.Boundary
nil
iex> now |> end_of_week
{{2015, 3, 22}, {23, 59, 59}}
iex> import GoodTimes.Generate
nil
iex> all_days_after({{2016, 2, 28}, {10, 0, 0}}) |> Enum.take 3
iex> all_days_after({{2016, 2, 28}, {10, 0, 0}}) |> Enum.take(3)
[{{2016, 2, 28}, {10, 0, 0}}, {{2016, 2, 29}, {10, 0, 0}},
{{2016, 3, 1}, {10, 0, 0}}]
```
Expand All @@ -48,7 +48,7 @@ iex> all_days_after({{2016, 2, 28}, {10, 0, 0}}) |> Enum.take 3
Update your `mix.exs` file and run `mix deps.get`.
```elixir
defp deps do
[{:good_times, "~> 1.0"}]
[{:good_times, "~> 1.1"}]
end
```

Expand Down

0 comments on commit 16f9a60

Please sign in to comment.