We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b31dd7 commit 001dc6fCopy full SHA for 001dc6f
1 file changed
mix.exs
@@ -1,13 +1,18 @@
1
defmodule Hound.Mixfile do
2
use Mix.Project
3
4
+ @version "0.7.2"
5
+
6
def project do
7
[ app: :hound,
- version: "0.7.1",
8
+ version: @version,
9
elixir: ">= 1.0.4",
10
description: "Webdriver library for integration testing and browser automation",
11
deps: deps,
- package: package
12
+ package: package,
13
+ docs: [readme: "README.md", main: "README",
14
+ source_ref: "v#{@version}",
15
+ source_url: "https://github.com/HashNuke/hound"]
16
]
17
end
18
0 commit comments