Changes 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. Revision history for Perl-Tokenizer
  2. 0.11 2024-04-30
  3. - bin/pl2html: generate smaller output.
  4. - Minor documentation improvements.
  5. - Meta updates.
  6. 0.10 2018-10-04
  7. - Removed the `whereso` and `whereis` keywords.
  8. - Fixed callback call for `other_space`.
  9. 0.09 2017-12-24
  10. - Removed the use of the smartmatch operator and the `given/when` construct. (ready for perl-5.28)
  11. - Added the `whereso` and `whereis` keywords.
  12. 0.08 2017-10-22
  13. - Fixed the parsing of the `format` statement, introduced in version 0.06.
  14. 0.07 2017-10-04
  15. - Documentation improvements.
  16. - Potential bug-fix for an invalid `format` statement.
  17. 0.06 2017-08-10
  18. [CHANGES AND IMPROVEMENTS]
  19. - Added more tests.
  20. - Improved documentation.
  21. - The only function `perl_tokens` is now exported by default.
  22. [BUG-FIXES]
  23. - Fixed the `assignment_operator` token to include only assignment operators.
  24. - The assignment operator `=` is now parsed correctly as an `assignment_operator` instead of `operator`.
  25. 0.05 2016-11-28
  26. - Added cache support for regular expressions that are dynamically generated.
  27. - Added more tests.
  28. - Updated the dependencies.
  29. 0.04 2016-06-03
  30. - Fixed the parsing of `$h{key}{s}`, `$h{key}{tr}`, etc...
  31. - Fixed the parsing of `$o->s()`, `$o->tr()`, etc...
  32. - Fixed the parsing of `$x++ < $y` and `$x-- < $y`
  33. 0.03 2015-09-04
  34. - Added support for the new bitwise operators (`^.`, `&.` and `|.`)
  35. 0.02 2015-07-23
  36. - Fixed the parsing of '__DATA__' when it's followed by a fat comma.
  37. 0.01 2015-07-16
  38. - First version, released on an unsuspecting world.