Skip to content

Commit

Permalink
Release v1.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
José Valim committed May 30, 2016
1 parent 65ae81f commit cff8587
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## v1.1.8

### Enhancements

* Support Elixir v1.3 calendar types
* Remove warnings on Elixir v1.3

## v1.1.7

### Bug fixes
Expand Down
1 change: 1 addition & 0 deletions lib/ecto/date_time.ex
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ defmodule Ecto.DateTime.Utils do

@doc "Converts to integer if possible"
def to_i(nil), do: nil
def to_i({int, _}) when is_integer(int), do: int
def to_i(int) when is_integer(int), do: int
def to_i(bin) when is_binary(bin) do
case Integer.parse(bin) do
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 Ecto.Mixfile do
use Mix.Project

@version "1.1.7"
@version "1.1.8"
@adapters [:pg, :mysql]
@pools [:poolboy, :sojourn_timeout, :sojourn_codel]

Expand Down

0 comments on commit cff8587

Please sign in to comment.