modernize v0.3 Release Notes

  • ๐Ÿš€ Released 2014-08-12.

    • ๐Ÿ†• New fixer for raise E, V, T, changed to six.reraise(E, V, T).
    • ๐Ÿ†• New fixer for metaclasses, using six.with_metaclass.
    • ๐Ÿ–จ Avoid adding redundant parentheses to print(x).
    • modernize can now be installed and run on Python 3.
    • Fixed a bug where __future__ imports were added multiple times.
    • ๐Ÿ›  Fixed a bug where fixer for zip() was recognising map().
    • 0๏ธโƒฃ The default is now to leave Unicode literals unchanged. (In previous versions this required the --compat-unicode option, which has now been removed.) A new --six-unicode option has been added to obtain the previous behaviour of adding six.u wrappers around Unicode literals.