Skip to content

Commit fe01e87

Browse files
committed
Release the 0.3.0 kraken
1 parent a9dc61e commit fe01e87

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

mix.exs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
defmodule BencheeCSV.Mixfile do
22
use Mix.Project
33

4+
@version "0.3.0"
5+
46
def project do
57
[app: :benchee_csv,
6-
version: "0.2.0",
8+
version: @version,
79
elixir: "~> 1.2",
810
build_embedded: Mix.env == :prod,
911
start_permanent: Mix.env == :prod,
1012
deps: deps,
1113
package: package,
1214
name: "BencheeCSV",
15+
docs: [source_ref: @version],
1316
source_url: "https://github.com/PragTob/benchee_csv",
1417
description: """
1518
Get CSV from your benchee benchmarks to them into graphs or whatever!
@@ -23,7 +26,7 @@ defmodule BencheeCSV.Mixfile do
2326

2427
defp deps do
2528
[
26-
{:benchee, git: "git://github.com/PragTob/benchee.git"},
29+
{:benchee, "~> 0.3.0"},
2730
{:csv, "~> 1.4.0"},
2831
{:ex_doc, "~> 0.11", only: :dev},
2932
{:earmark, "~> 0.2", only: :dev}

0 commit comments

Comments
 (0)