Current section

90 Versions

Jump to

Compare versions

5 files changed
+10 additions
-5 deletions
  @@ -1,3 +1,8 @@
1 + 0.6.2
2 + ------
3 + #### Changes
4 + * Fix default handling for missing options (#86).
5 +
1 6 0.6.1
2 7 ------
3 8 #### Changes
  @@ -9,7 +9,7 @@ The followings are example projects.
9 9 - [circle_sample](https://github.com/parroty/circle_sample) is for CircleCI .
10 10 - [semaphore_sample](https://github.com/parroty/semaphore_sample) is for Semaphore CI.
11 11 - [excoveralls_umbrella](https://github.com/parroty/excoveralls_umbrella) is for umbrella project.
12 - - [gitlab_sample](https://gitlab.com/zj/gitlab_sample) is for GitLab CI.
12 + - [gitlab_sample](https://gitlab.com/parroty/gitlab_sample) is for GitLab CI (using GitLab CI feature instead of coveralls.io).
13 13
14 14 # Settings
15 15 ### mix.exs
  @@ -32,4 +32,4 @@
32 32 {<<"name">>,<<"hackney">>},
33 33 {<<"optional">>,false},
34 34 {<<"requirement">>,<<">= 0.12.0">>}]]}.
35 - {<<"version">>,<<"0.6.1">>}.
35 + {<<"version">>,<<"0.6.2">>}.
  @@ -22,7 +22,7 @@ defmodule ExCoveralls.Settings do
22 22 Get coverage options from the json file.
23 23 """
24 24 def get_coverage_options do
25 - read_config("coverage_options") |> Enum.into(Map.new)
25 + read_config("coverage_options", []) |> Enum.into(Map.new)
26 26 end
27 27
28 28 @doc """
  @@ -39,7 +39,7 @@ defmodule ExCoveralls.Settings do
39 39 Get terminal output options from the json file.
40 40 """
41 41 def get_terminal_options do
42 - read_config("terminal_options") |> Enum.into(Map.new)
42 + read_config("terminal_options", []) |> Enum.into(Map.new)
43 43 end
44 44
45 45 @doc """
  @@ -3,7 +3,7 @@ defmodule ExCoveralls.Mixfile do
3 3
4 4 def project do
5 5 [ app: :excoveralls,
6 - version: "0.6.1",
6 + version: "0.6.2",
7 7 elixir: "~> 1.2",
8 8 deps: deps(),
9 9 description: description(),