Skip to content

Commit c4160e3

Browse files
committed
Prepare release v2.0.0
1 parent 1cbceef commit c4160e3

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.travis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,14 @@ otp_release:
44
- 17.3
55

66
env:
7-
- ELIXIR_VERSION=1.0.2
7+
- ELIXIR_VERSION=1.0.4
88

99
before_install:
1010
- wget https://github.com/elixir-lang/elixir/releases/download/v$ELIXIR_VERSION/Precompiled.zip
1111
- 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
1412

1513
before_script:
1614
- export PATH=`pwd`/elixir/bin:$PATH
15+
- mix local.hex --force
1716

18-
script: mix test --trace --include localbin
17+
script: mix test --trace

mix.exs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
defmodule Hashids.Mixfile do
22
use Mix.Project
33

4+
@version "2.0.0"
5+
46
def project do
57
[
68
app: :hashids,
7-
version: "2.0.0-dev",
9+
version: "2.0.0",
810
elixir: "~> 1.0",
911
deps: deps,
1012
description: description,
1113
package: package,
1214
source_url: "https://github.com/alco/hashids-elixir",
1315
docs: [
1416
main: Hashids,
17+
source_ref: "v#{@version}",
1518
],
1619
]
1720
end

0 commit comments

Comments
 (0)