Skip to content

Commit 1dc4bf0

Browse files
author
José Valim
committed
Use tag from VERSION on package.exs
1 parent 1812e65 commit 1dc4bf0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

package.exs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
version = String.strip(File.read!("VERSION"))
2+
13
Expm.Package.new(
24
name: "elixir",
35
description: "Elixir is a functional meta-programming aware language built on top of the Erlang VM",
4-
version: String.strip(File.read!("VERSION")),
6+
version: version,
57
keywords: [],
68
homepage: "http://elixir-lang.org/",
79
maintainers: [[name: "José Valim", email: "[email protected]"]],
8-
repositories: [[github: "elixir-lang/elixir", tag: "v0.8.0.dev"]]
10+
repositories: [[github: "elixir-lang/elixir", tag: "v#{version}"]]
911
)

0 commit comments

Comments
 (0)