Skip to content

Commit a325c57

Browse files
committed
update to ecto 1.0.0, release v0.6.2
1 parent bdfdf8f commit a325c57

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v0.6.2
2+
3+
* Enhancements
4+
* use ecto ~> 1.0.0
5+
16
## v0.6.1
27

38
* Enhancements

lib/ecto/migration/system_table.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ defmodule Ecto.Migration.SystemTable.Index.Migration do
55
add :tablename, :string
66
add :index, :string
77
add :name, :string
8-
add :concurrently
8+
add :concurrently, :string
99
add :unique, :boolean
1010
add :using, :string
1111
end

mix.exs

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
defmodule EctoMigrate.Mixfile do
22
use Mix.Project
3-
@version "0.6.1"
3+
@version "0.6.2"
44
@github "https://github.com/xerions/ecto_migrate"
55

66
def project do
77
[app: :ecto_migrate,
88
version: @version,
99

10-
elixir: "~>1.0.0 or ~> 1.1-dev",
1110
description: description,
1211
package: package,
1312

@@ -50,7 +49,7 @@ defmodule EctoMigrate.Mixfile do
5049
defp deps do
5150
[{:postgrex, ">= 0.0.0", optional: true},
5251
{:mariaex, ">= 0.0.0", optional: true},
53-
{:ecto, "~> 0.16.0"},
52+
{:ecto, "~> 1.0.0"},
5453
{:ecto_it, "~> 0.2.0", optional: true}]
5554
end
5655
end

0 commit comments

Comments
 (0)