diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d074c0f..9cf12fd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,16 @@ ## main +## v0.11.9 + ### Improvements * pipes: check for `Stream.foo` equivalents to `Enum.foo` in a few more cases +### Fixes + +* pipes: `|> then(&(&1 op y))` rewrites with `|> Kernel.op(y)` as long as the operator is defined in `Kernel`; skips the rewrite otherwise (h/t @kerryb for the report & @saveman71 for the fix) + ## v0.11.8 Two releases in one day!? @koudelka made too good a point about `Map.new` not being special... diff --git a/mix.exs b/mix.exs index 8c014c99..a7454840 100644 --- a/mix.exs +++ b/mix.exs @@ -12,7 +12,7 @@ defmodule Styler.MixProject do use Mix.Project # Don't forget to bump the README when doing non-patch version changes - @version "0.11.8" + @version "0.11.9" @url "https://github.com/adobe/elixir-styler" def project do