did_you_mean v1.3.0 Release Notes

Release Date: 2018-12-18 // over 5 years ago
  • ๐Ÿš€ released at 2018-12-18 15:37:10 UTC

    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)