changed
CHANGELOG.md
|
@@ -1,3 +1,11 @@
|
1
|
+ # Changelog for Cldr v2.12.1
|
2
|
+
|
3
|
+ This is the changelog for Cldr v2.12.1 released on January 14th, 2020. For older changelogs please consult the release tag on [GitHub](https://github.com/elixir-cldr/cldr/tags)
|
4
|
+
|
5
|
+ ### Bug Fixes
|
6
|
+
|
7
|
+ * Remove two lingering dialyzer errors-that-aren't-really-errors so its passes cleanly.
|
8
|
+
|
1
9
|
# Changelog for Cldr v2.12.0
|
2
10
|
|
3
11
|
This is the changelog for Cldr v2.12.0 released on January 2nd, 2020. For older changelogs please consult the release tag on [GitHub](https://github.com/elixir-cldr/cldr/tags)
|
changed
hex_metadata.config
|
@@ -41,10 +41,10 @@
|
41
41
|
{<<"licenses">>,[<<"Apache 2.0">>]}.
|
42
42
|
{<<"links">>,
|
43
43
|
[{<<"Changelog">>,
|
44
|
- <<"https://github.com/elixir-cldr/cldr/blob/v2.12.0/CHANGELOG.md">>},
|
44
|
+ <<"https://github.com/elixir-cldr/cldr/blob/v2.12.1/CHANGELOG.md">>},
|
45
45
|
{<<"GitHub">>,<<"https://github.com/elixir-cldr/cldr">>},
|
46
46
|
{<<"Readme">>,
|
47
|
- <<"https://github.com/elixir-cldr/cldr/blob/v2.12.0/README.md">>}]}.
|
47
|
+ <<"https://github.com/elixir-cldr/cldr/blob/v2.12.1/README.md">>}]}.
|
48
48
|
{<<"name">>,<<"ex_cldr">>}.
|
49
49
|
{<<"requirements">>,
|
50
50
|
[[{<<"app">>,<<"jason">>},
|
|
@@ -82,4 +82,4 @@
|
82
82
|
{<<"optional">>,true},
|
83
83
|
{<<"repository">>,<<"hexpm">>},
|
84
84
|
{<<"requirement">>,<<"~> 0.4.0">>}]]}.
|
85
|
- {<<"version">>,<<"2.12.0">>}.
|
85
|
+ {<<"version">>,<<"2.12.1">>}.
|
changed
lib/cldr/install.ex
|
@@ -140,7 +140,8 @@ defmodule Cldr.Install do
|
140
140
|
Keyword.get(spec, :vsn) |> :erlang.list_to_binary()
|
141
141
|
|
142
142
|
Code.ensure_loaded?(Cldr.Mixfile) ->
|
143
|
- Keyword.get(Cldr.Mixfile.project(), :version)
|
143
|
+ module = Module.concat(Cldr, Mixfile)
|
144
|
+ Keyword.get(module.project(), :version)
|
144
145
|
|
145
146
|
true ->
|
146
147
|
:error
|
changed
mix.exs
|
@@ -1,7 +1,7 @@
|
1
1
|
defmodule Cldr.Mixfile do
|
2
2
|
use Mix.Project
|
3
3
|
|
4
|
- @version "2.12.0"
|
4
|
+ @version "2.12.1"
|
5
5
|
|
6
6
|
def project do
|
7
7
|
[
|