diff --git a/CHANGELOG.md b/CHANGELOG.md index ee1385b..29f7197 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## main +### Fixes + +* rewrite `a |> Enum.map(m) |> Enum.join()` to `map_join(a, m)`. we already did this for `join/2`, but missed the case for `join/1` + ## 1.0.0-rc.0 At this point, 1.0.0 feels feature complete. Two things remains for a full release: @@ -103,7 +107,6 @@ See the moduledoc for `Styler.Style.Configs` for more. * `Timex.now/1` will no longer be rewritten to `DateTime.now!/1` due to Timex accepting a wider domain of "timezones" than the stdlib (#145, h/t @ivymarkwell) * `with`: skip nodes which (unexpectedly) do not contain a `do` body (#158, h/t @DavidB59) * `then(&fun/1)`: fix false positives on arithmetic `&1 + x / 1` (#164, h/t @aenglisc) -* rewrite `a |> Enum.map(m) |> Enum.join()` to `map_join(a, m)`. we already did this for `join/2`, but missed the case for `join/1` ### Breaking Changes diff --git a/README.md b/README.md index 763a5c9..6431660 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ You can learn more about the history, purpose and implementation of Styler from Styler's documentation is under work as part of releasing 1.0. -You can find the [0.11.9 documentation and readme here.](https://hexdocs.pm/styler/readme.html) +You can find the much more complete and usable [0.11.9 documentation and readme here.](https://hexdocs.pm/styler/readme.html) ## Installation