File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -4,15 +4,14 @@ otp_release:
4
4
- 17.3
5
5
6
6
env :
7
- - ELIXIR_VERSION=1.0.2
7
+ - ELIXIR_VERSION=1.0.4
8
8
9
9
before_install :
10
10
- wget https://github.com/elixir-lang/elixir/releases/download/v$ELIXIR_VERSION/Precompiled.zip
11
11
- unzip -d elixir Precompiled.zip
12
- - wget https://github.com/alco/goon/releases/download/v1.1.0/goon_linux_amd64.tar.gz
13
- - tar -xf goon_linux_amd64.tar.gz
14
12
15
13
before_script :
16
14
- export PATH=`pwd`/elixir/bin:$PATH
15
+ - mix local.hex --force
17
16
18
- script : mix test --trace --include localbin
17
+ script : mix test --trace
Original file line number Diff line number Diff line change 1
1
defmodule Hashids.Mixfile do
2
2
use Mix.Project
3
3
4
+ @ version "2.0.0"
5
+
4
6
def project do
5
7
[
6
8
app: :hashids ,
7
- version: "2.0.0-dev " ,
9
+ version: "2.0.0" ,
8
10
elixir: "~> 1.0" ,
9
11
deps: deps ,
10
12
description: description ,
11
13
package: package ,
12
14
source_url: "https://github.com/alco/hashids-elixir" ,
13
15
docs: [
14
16
main: Hashids ,
17
+ source_ref: "v#{ @ version } " ,
15
18
] ,
16
19
]
17
20
end
You can’t perform that action at this time.
0 commit comments