Skip to content

Commit

Permalink
Release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GregMefford committed Aug 3, 2019
1 parent 98088da commit 17a0a75
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ installed by adding `:zbar` to your list of dependencies in `mix.exs`:

```elixir
def deps do
[{:zbar, "~> 0.1.0"}]
[{:zbar, "~> 0.2"}]
end
```

Expand Down
21 changes: 16 additions & 5 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Zbar.Mixfile do
def project do
[
app: :zbar,
version: "0.2.0-dev",
version: "0.2.0",
description: "Scan one or more barcodes from a JPEG image",
elixir: "~> 1.4",
make_targets: ["all"],
Expand All @@ -15,6 +15,8 @@ defmodule Zbar.Mixfile do
compilers: [:elixir_make] ++ Mix.compilers,
package: package(),
deps: deps(),
dialyzer: [plt_add_apps: [:mix]],
docs: docs()
]
end

Expand All @@ -25,12 +27,21 @@ defmodule Zbar.Mixfile do
defp deps do
[
{:elixir_make, "~> 0.6", runtime: false},
{:dialyxir, "~> 0.5", only: :dev, runtime: false},
{:ex_doc, "~> 0.16", only: :dev, runtime: false},
{:dialyxir, "~> 1.0.0-rc.6", only: :dev, runtime: false},
{:ex_doc, "~> 0.21", only: :dev, runtime: false},
]
end

defp package() do
defp docs do
[
main: "README",
extras: [
"README.md"
]
]
end

defp package do
[
files: [
"lib",
Expand All @@ -42,7 +53,7 @@ defmodule Zbar.Mixfile do
],
maintainers: ["Greg Mefford"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/GregMefford/zbar-elixir"}
links: %{"GitHub" => "https://github.com/elixir-vision/zbar-elixir"}
]
end
end
10 changes: 7 additions & 3 deletions mix.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
%{
"dialyxir": {:hex, :dialyxir, "0.5.1", "b331b091720fd93e878137add264bac4f644e1ddae07a70bf7062c7862c4b952", [:mix], [], "hexpm"},
"earmark": {:hex, :earmark, "1.2.4", "99b637c62a4d65a20a9fb674b8cffb8baa771c04605a80c911c4418c69b75439", [:mix], [], "hexpm"},
"dialyxir": {:hex, :dialyxir, "1.0.0-rc.6", "78e97d9c0ff1b5521dd68041193891aebebce52fc3b93463c0a6806874557d7d", [:mix], [{:erlex, "~> 0.2.1", [hex: :erlex, repo: "hexpm", optional: false]}], "hexpm"},
"earmark": {:hex, :earmark, "1.3.5", "0db71c8290b5bc81cb0101a2a507a76dca659513984d683119ee722828b424f6", [:mix], [], "hexpm"},
"elixir_make": {:hex, :elixir_make, "0.6.0", "38349f3e29aff4864352084fc736fa7fa0f2995a819a737554f7ebd28b85aaab", [:mix], [], "hexpm"},
"ex_doc": {:hex, :ex_doc, "0.18.1", "37c69d2ef62f24928c1f4fdc7c724ea04aecfdf500c4329185f8e3649c915baf", [:mix], [{:earmark, "~> 1.1", [hex: :earmark, repo: "hexpm", optional: false]}], "hexpm"},
"erlex": {:hex, :erlex, "0.2.4", "23791959df45fe8f01f388c6f7eb733cc361668cbeedd801bf491c55a029917b", [:mix], [], "hexpm"},
"ex_doc": {:hex, :ex_doc, "0.21.1", "5ac36660846967cd869255f4426467a11672fec3d8db602c429425ce5b613b90", [:mix], [{:earmark, "~> 1.3", [hex: :earmark, repo: "hexpm", optional: false]}, {:makeup_elixir, "~> 0.14", [hex: :makeup_elixir, repo: "hexpm", optional: false]}], "hexpm"},
"makeup": {:hex, :makeup, "1.0.0", "671df94cf5a594b739ce03b0d0316aa64312cee2574b6a44becb83cd90fb05dc", [:mix], [{:nimble_parsec, "~> 0.5.0", [hex: :nimble_parsec, repo: "hexpm", optional: false]}], "hexpm"},
"makeup_elixir": {:hex, :makeup_elixir, "0.14.0", "cf8b7c66ad1cff4c14679698d532f0b5d45a3968ffbcbfd590339cb57742f1ae", [:mix], [{:makeup, "~> 1.0", [hex: :makeup, repo: "hexpm", optional: false]}], "hexpm"},
"nimble_parsec": {:hex, :nimble_parsec, "0.5.0", "90e2eca3d0266e5c53f8fbe0079694740b9c91b6747f2b7e3c5d21966bba8300", [:mix], [], "hexpm"},
}

0 comments on commit 17a0a75

Please sign in to comment.