Current section

26 Versions

Jump to

Compare versions

3 files changed
+3 additions
-3 deletions
  @@ -7,7 +7,7 @@
7 7 {<<"Sponsor">>,<<"https://github.com/sponsors/bartblast">>},
8 8 {<<"Website">>,<<"https://hologram.page">>}]}.
9 9 {<<"name">>,<<"hologram">>}.
10 - {<<"version">>,<<"0.6.0">>}.
10 + {<<"version">>,<<"0.6.1">>}.
11 11 {<<"description">>,
12 12 <<"Full stack isomorphic Elixir web framework that can be used on top of Phoenix.">>}.
13 13 {<<"elixir">>,<<"~> 1.0">>}.
  @@ -41,7 +41,7 @@ defmodule Hologram.Compiler.Normalizer do
41 41 {:for, meta, Enum.map(parts, &normalize_comprehension_part/1)}
42 42 end
43 43
44 - def normalize({:try, meta, [opts]}) do
44 + def normalize({:try, meta, [opts]}) when is_list(opts) do
45 45 {:try, meta, [Enum.map(opts, &normalize_try_opt/1)]}
46 46 end
  @@ -2,7 +2,7 @@
2 2 defmodule Hologram.MixProject do
3 3 use Mix.Project
4 4
5 - @version "0.6.0"
5 + @version "0.6.1"
6 6
7 7 # Copied from Hologram.Commons.SystemUtils
8 8 @windows_exec_suffixes [".bat", ".cmd", ".exe"]