Skip to content

Commit

Permalink
Update arc dependency to v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stavro committed Jun 19, 2018
1 parent 673cdeb commit 5c389a5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## v0.10.0 (2018-06-19)
* (Dependency Update) Require `arc ~> 0.10.0`

## v0.9.0 (2018-06-19)
* (Dependency Update) Require `arc ~> 0.9.0`

Expand Down
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,9 @@ Add the latest stable release to your `mix.exs` file:
```elixir
defp deps do
[
{:arc_ecto, "~> 0.9.0"}
{:arc_ecto, "~> 0.10.0"}
]
end

defp application do
[applications: [:arc_ecto]]
end
```

Then run `mix deps.get` in your shell to fetch the dependencies.
Expand Down
6 changes: 3 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
defmodule Arc.Ecto.Mixfile do
use Mix.Project

@version "0.9.0"
@version "0.10.0"

def project do
[app: :arc_ecto,
version: @version,
elixir: "~> 1.0",
elixir: "~> 1.4",
deps: deps(),

# Hex
Expand Down Expand Up @@ -36,7 +36,7 @@ defmodule Arc.Ecto.Mixfile do

defp deps do
[
{:arc, "~> 0.9.0"},
{:arc, "~> 0.10.0"},
{:ecto, "~> 2.1"},
{:mock, "~> 0.1.1", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev}
Expand Down
2 changes: 1 addition & 1 deletion mix.lock
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%{"arc": {:hex, :arc, "0.9.0", "a6967261440b63ed9e6c2fb72bf9644d6548e4e07aca163e46cd910a5766be71", [:mix], [{:ex_aws, "~> 1.1", [hex: :ex_aws, repo: "hexpm", optional: true]}, {:httpoison, "~> 0.11", [hex: :httpoison, repo: "hexpm", optional: false]}, {:poison, "~> 2.2 or ~> 3.1", [hex: :poison, repo: "hexpm", optional: true]}, {:sweet_xml, "~> 0.6", [hex: :sweet_xml, repo: "hexpm", optional: true]}], "hexpm"},
%{"arc": {:hex, :arc, "0.10.0", "b2a5dbe4e684c27ce231e2228ea2cc640420eab91dbe6e27b5ed1016a8a39975", [:mix], [{:ex_aws, "~> 2.0", [hex: :ex_aws, repo: "hexpm", optional: true]}, {:ex_aws_s3, "~> 2.0", [hex: :ex_aws_s3, repo: "hexpm", optional: true]}, {:httpoison, "~> 0.13", [hex: :httpoison, repo: "hexpm", optional: false]}, {:poison, "~> 2.2 or ~> 3.1", [hex: :poison, repo: "hexpm", optional: true]}, {:sweet_xml, "~> 0.6", [hex: :sweet_xml, repo: "hexpm", optional: true]}], "hexpm"},
"certifi": {:hex, :certifi, "2.3.1", "d0f424232390bf47d82da8478022301c561cf6445b5b5fb6a84d49a9e76d2639", [:rebar3], [{:parse_trans, "3.2.0", [hex: :parse_trans, repo: "hexpm", optional: false]}], "hexpm"},
"decimal": {:hex, :decimal, "1.4.0", "fac965ce71a46aab53d3a6ce45662806bdd708a4a95a65cde8a12eb0124a1333", [:mix], [], "hexpm"},
"earmark": {:hex, :earmark, "1.0.1", "2c2cd903bfdc3de3f189bd9a8d4569a075b88a8981ded9a0d95672f6e2b63141", [:mix], [], "hexpm"},
Expand Down

0 comments on commit 5c389a5

Please sign in to comment.