Skip to content

Commit

Permalink
Update patterns and release new version
Browse files Browse the repository at this point in the history
  • Loading branch information
doomspork committed Nov 27, 2017
1 parent 6b49db5 commit 5e8e023
Show file tree
Hide file tree
Showing 3 changed files with 262 additions and 53 deletions.
14 changes: 5 additions & 9 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
defmodule UAParser.Mixfile do
use Mix.Project

@version "1.2.1"
@version "1.3.0"

def project do
[
app: :ua_parser,
description: "Parse user-agent strings with BrowserScope patterns",
version: @version,
elixir: "~> 1.3",
elixir: "~> 1.4",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
package: package(),
Expand All @@ -17,17 +17,15 @@ defmodule UAParser.Mixfile do
end

def application do
[
applications: [:logger, :yamerl]
]
[extra_aplications: [:logger, :yamerl]]
end

defp deps do
[
{:yamerl, "~> 0.4.0"},
{:yamerl, "~> 0.5"},

# Development & Test dependencies
{:credo, "~> 0.5", only: [:dev, :test]},
{:credo, "~> 0.8", only: [:dev, :test]},
{:ex_doc, ">= 0.0.0", only: :dev},
]
end
Expand All @@ -40,6 +38,4 @@ defmodule UAParser.Mixfile do
links: %{github: "https://github.com/doomspork/ua_parser"}
]
end


end
14 changes: 8 additions & 6 deletions mix.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
%{"bunt": {:hex, :bunt, "0.1.6", "5d95a6882f73f3b9969fdfd1953798046664e6f77ec4e486e6fafc7caad97c6f", [:mix], []},
"credo": {:hex, :credo, "0.5.3", "0c405b36e7651245a8ed63c09e2d52c2e2b89b6d02b1570c4d611e0fcbecf4a2", [:mix], [{:bunt, "~> 0.1.6", [hex: :bunt, optional: false]}]},
"earmark": {:hex, :earmark, "1.0.3", "89bdbaf2aca8bbb5c97d8b3b55c5dd0cff517ecc78d417e87f1d0982e514557b", [:mix], []},
"ex_doc": {:hex, :ex_doc, "0.14.4", "a0a79a6896075814f4bc6802b74ccbed6549f47cc5ab34c71eaee2303170b8ef", [:mix], [{:earmark, "~> 1.0", [hex: :earmark, optional: false]}]},
"yamerl": {:hex, :yamerl, "0.4.0", "ae215b1242810a9bc07716b88062f1bfe06f6bc7cf68372091f630baa536df79", [:rebar3], []},
"yomel": {:hex, :yomel, "0.5.0", "c5a42d1818deda3f85ae14b1f01f6ece22b9ed8e8087012359fc04b59d85f621", [:make, :mix], []}}
%{
"bunt": {:hex, :bunt, "0.2.0", "951c6e801e8b1d2cbe58ebbd3e616a869061ddadcc4863d0a2182541acae9a38", [:mix], [], "hexpm"},
"credo": {:hex, :credo, "0.8.10", "261862bb7363247762e1063713bb85df2bbd84af8d8610d1272cd9c1943bba63", [:mix], [{:bunt, "~> 0.2.0", [hex: :bunt, repo: "hexpm", optional: false]}], "hexpm"},
"earmark": {:hex, :earmark, "1.2.3", "206eb2e2ac1a794aa5256f3982de7a76bf4579ff91cb28d0e17ea2c9491e46a4", [:mix], [], "hexpm"},
"ex_doc": {:hex, :ex_doc, "0.18.1", "37c69d2ef62f24928c1f4fdc7c724ea04aecfdf500c4329185f8e3649c915baf", [:mix], [{:earmark, "~> 1.1", [hex: :earmark, repo: "hexpm", optional: false]}], "hexpm"},
"yamerl": {:hex, :yamerl, "0.5.0", "6ec55a5d830f6f0d65a4030f5c5db24b0e72b813dfbde32fea44b4951ed9417c", [:rebar3], [], "hexpm"},
"yomel": {:hex, :yomel, "0.5.0", "c5a42d1818deda3f85ae14b1f01f6ece22b9ed8e8087012359fc04b59d85f621", [:make, :mix], []},
}
Loading

0 comments on commit 5e8e023

Please sign in to comment.