Skip to content

Commit

Permalink
Update Postgrex dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
tlvenn committed Jun 26, 2018
1 parent cea20ee commit 6e7fc70
Showing 1 changed file with 21 additions and 17 deletions.
38 changes: 21 additions & 17 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,32 @@ defmodule EctoReplaySandbox.Mixfile do
@version "1.0.0"

def project do
[app: :ecto_replay_sandbox,
version: @version,
elixir: "~> 1.4",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
package: package(),
source_url: "https://github.com/jumpn/ecto_replay_sandbox",
docs: [source_ref: "v#{@version}", main: "readme", extras: ["README.md"]],
deps: deps()]
[
app: :ecto_replay_sandbox,
version: @version,
elixir: "~> 1.4",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
package: package(),
source_url: "https://github.com/jumpn/ecto_replay_sandbox",
docs: [source_ref: "v#{@version}", main: "readme", extras: ["README.md"]],
deps: deps()
]
end

defp package do
[description: "Log replay based sandbox for Ecto, compatible with CockroachDB",
files: ["lib", "mix.exs", "README*"],
maintainers: ["Christian Meunier"],
licenses: ["MIT"],
links: %{github: "https://github.com/jumpn/ecto_replay_sandbox"}]
[
description: "Log replay based sandbox for Ecto, compatible with CockroachDB",
files: ["lib", "mix.exs", "README*"],
maintainers: ["Christian Meunier"],
licenses: ["MIT"],
links: %{github: "https://github.com/jumpn/ecto_replay_sandbox"}
]
end

def application do
[
extra_applications: [:logger],
extra_applications: [:logger]
]
end

Expand All @@ -34,8 +38,8 @@ defmodule EctoReplaySandbox.Mixfile do
{:ex_doc, ">= 0.0.0", only: :dev},
{:ecto, "~> 2.2"},
{:db_connection, "~> 1.1"},
#{:postgrex, "~> 0.13"},
{:postgrex, "~> 0.13", hex: :postgrex_cdb, override: true},
# {:postgrex, "~> 0.13"},
{:postgrex, "~> 0.14.0-dev", hex: :postgrex_cdb, override: true}
]
end
end

0 comments on commit 6e7fc70

Please sign in to comment.