Update ex_doc, bump version

This commit is contained in:
avitex 2017-08-23 18:15:08 +10:00
parent 0203c00582
commit 9575328245
3 changed files with 27 additions and 33 deletions

View File

@ -13,7 +13,7 @@ Documentation hosted on [hexdocs](https://hexdocs.pm/vultr).
```elixir
def deps do
[{:vultr, "~> 0.2.0"}]
[{:vultr, "~> 0.2.2"}]
end
```

54
mix.exs
View File

@ -5,38 +5,32 @@ defmodule Vultr.Mixfile do
Simple wrapper for the Vultr API
"""
def project do
[
app: :vultr,
version: "0.2.1",
elixir: "~> 1.3",
deps: deps(),
description: @description,
package: package(),
]
end
def project, do: [
app: :vultr,
version: "0.2.2",
elixir: "~> 1.3",
deps: deps(),
description: @description,
package: package(),
]
# Configuration for the OTP application
def application do
[applications: [:tesla, :ibrowse]]
end
def application, do: [
applications: [:tesla, :ibrowse],
]
defp deps do
[
{:inch_ex, "~> 0.5", only: :docs},
{:ex_doc, "~> 0.14", only: :dev, runtime: false},
{:tesla, "~> 0.7.1"},
{:ibrowse, "~> 4.2"},
{:poison, ">= 1.0.0"}
]
end
defp deps, do: [
{:inch_ex, "~> 0.5", only: :docs},
{:ex_doc, "~> 0.16", only: :dev, runtime: false},
{:tesla, "~> 0.7.1"},
{:ibrowse, "~> 4.2"},
{:poison, "~> 3.1"},
]
defp package do
[
name: :vultr,
maintainers: ["James Dyson"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/avitex/elixir-vultr"},
]
end
defp package, do: [
name: :vultr,
maintainers: ["James Dyson"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/avitex/elixir-vultr"},
]
end

View File

@ -1,6 +1,6 @@
%{"certifi": {:hex, :certifi, "1.0.0", "1c787a85b1855ba354f0b8920392c19aa1d06b0ee1362f9141279620a5be2039", [:rebar3], []},
"earmark": {:hex, :earmark, "1.1.1", "433136b7f2e99cde88b745b3a0cfc3fbc81fe58b918a09b40fce7f00db4d8187", [:mix], []},
"ex_doc": {:hex, :ex_doc, "0.14.5", "c0433c8117e948404d93ca69411dd575ec6be39b47802e81ca8d91017a0cf83c", [:mix], [{:earmark, "~> 1.0", [hex: :earmark, optional: false]}]},
"earmark": {:hex, :earmark, "1.2.3", "206eb2e2ac1a794aa5256f3982de7a76bf4579ff91cb28d0e17ea2c9491e46a4", [], [], "hexpm"},
"ex_doc": {:hex, :ex_doc, "0.16.3", "cd2a4cfe5d26e37502d3ec776702c72efa1adfa24ed9ce723bb565f4c30bd31a", [], [{:earmark, "~> 1.1", [hex: :earmark, repo: "hexpm", optional: false]}], "hexpm"},
"hackney": {:hex, :hackney, "1.6.6", "5564b4695d48fd87859e9df77a7fa4b4d284d24519f0cd7cc898f09e8fbdc8a3", [:rebar3], [{:certifi, "1.0.0", [hex: :certifi, optional: false]}, {:idna, "4.0.0", [hex: :idna, optional: false]}, {:metrics, "1.0.1", [hex: :metrics, optional: false]}, {:mimerl, "1.0.2", [hex: :mimerl, optional: false]}, {:ssl_verify_fun, "1.1.1", [hex: :ssl_verify_fun, optional: false]}]},
"ibrowse": {:hex, :ibrowse, "4.4.0", "2d923325efe0d2cb09b9c6a047b2835a5eda69d8a47ed6ff8bc03628b764e991", [:rebar3], []},
"idna": {:hex, :idna, "4.0.0", "10aaa9f79d0b12cf0def53038547855b91144f1bfcc0ec73494f38bb7b9c4961", [:rebar3], []},