Skip to content

Commit 0501175

Browse files
committed
Prepare Hex release v0.2.0
1 parent ad471cb commit 0501175

File tree

2 files changed

+25
-7
lines changed

2 files changed

+25
-7
lines changed

README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,21 @@ Choose how you'd like to install the custom Mix tasks:
2626
1. As an archive:
2727

2828
```
29-
mix archive.install https://github.com/alco/benchfella/releases/download/v0.1.0/benchfella-0.1.0.ez
29+
mix archive.install https://github.com/alco/benchfella/releases/download/v0.2.0/benchfella-0.2.0.ez
3030
```
3131
3232
This will make the custom tasks available to `mix` regardless of where it
3333
is invoked, just like the builtin tasks are.
3434
35-
**Caveat**: the archive may be outdated when there is development happening
36-
on the master branch.
35+
**Caveat**: the archive may keep up with the development on the master branch.
3736
3837
2. Add `benchfella` as a dependency to your project:
3938
4039
```elixir
4140
# in your mix.exs
4241
4342
defp deps do
44-
[{:benchfella, github: "alco/benchfella"}]
43+
[{:benchfella, "0.2.0"}]
4544
end
4645
```
4746

mix.exs

+22-3
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,34 @@ defmodule Benchfella.Mixfile do
22
use Mix.Project
33

44
def project do
5-
[app: :benchfella,
6-
version: "0.2.0-dev",
7-
elixir: "~> 1.0"]
5+
[
6+
app: :benchfella,
7+
version: "0.2.0",
8+
elixir: "~> 1.0",
9+
description: description,
10+
package: package,
11+
]
812
end
913

1014
def application do
1115
[applications: []]
1216
end
1317

18+
defp description do
19+
"Microbenchmarking tool for Elixir."
20+
end
21+
22+
defp package do
23+
[
24+
files: ["lib", "priv", "mix.exs", "README.md", "LICENSE"],
25+
contributors: ["Alexei Sholik"],
26+
licenses: ["MIT"],
27+
links: %{
28+
"GitHub" => "https://github.com/alco/benchfella",
29+
}
30+
]
31+
end
32+
1433
# no deps
1534
# --alco
1635
end

0 commit comments

Comments
 (0)