Skip to content

v1.3.0

Compare
Choose a tag to compare
@yuki24 yuki24 released this 18 Dec 15:37
· 240 commits to master since this release

Starting version 1.3, the did_you_mean gem will be compatible with 2.6 and 2.5, and we will try to keep all subsequent versions compatible with Ruby 2.5 on an best-effort basis.

  • Version 1.2.0 only has support for Ruby 2.5.0 and later as it uses new features that are only available in 2.5.
  • Versions earlier than 1.1.* will still be maintained until Ruby 2.4 is deprecated.
  • Versions earlier than 1.0.* is still maintained, but are likely to be deprecated as Ruby 2.3 will (probably) be deprecated in 2019.
  • Support for versions below 1.0 has already ended.

New features

  • Suggest reserved words if there are close matches (2a082a7)

    results = yiedl
    # NameError => undefined local variable or method `yiedl' for ...
    #    Did you mean?  yield    

Bug fixes

  • Fixes a bug where name errors can not be dumped (#108, @jessebs)