Skip to content

Commit 5b2ae7e

Browse files
committed
Release 1.0.19
1 parent c718206 commit 5b2ae7e

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 1.0.19
2+
3+
* Updating fast_yaml to version 1.0.38.
4+
15
# Version 1.0.16
26

37
* Updating fast_yaml to version 1.0.37.

rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
{platform_define, "^(R|1|20)", 'USE_OLD_HTTP_URI'},
2323
{platform_define, "^(R|1|20)", deprecated_stacktrace}]}.
2424

25-
{deps, [{fast_yaml, ".*", {git, "https://github.com/processone/fast_yaml", {tag, "1.0.37"}}}]}.
25+
{deps, [{fast_yaml, ".*", {git, "https://github.com/processone/fast_yaml", {tag, "1.0.38"}}}]}.
2626

2727
{cover_enabled, true}.
2828
{cover_export_enabled, true}.

src/yconf.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
%%%-------------------------------------------------------------------
1818
{application, yconf,
1919
[{description, "YAML configuration processor"},
20-
{vsn, "1.0.16"},
20+
{vsn, "1.0.19"},
2121
{modules, []},
2222
{registered, []},
2323
{applications, [kernel, stdlib, fast_yaml]},

src/yconf.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -865,7 +865,7 @@ read_yaml(Path, Opts, Paths) ->
865865
partition_macros(Opts) ->
866866
lists:foldr(
867867
fun({define_macro, M}, {Ms, Os}) ->
868-
{M ++ Ms, Os};
868+
{M ++ Ms, [O|Os]};
869869
(O, {Ms, Os}) ->
870870
{Ms, [O|Os]}
871871
end, {[], []}, Opts).

0 commit comments

Comments
 (0)