The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
1.04	2013-01-01

	Other
	* Lexical $_ is deprecated in Perl 5.17, remove usage from code

1.03	2012-12-30

	Other
	* Lexical $_ is deprecated in Perl 5.17, remove usage from code

Revision history for Parse-FSM

1.02	2011-04-21

	Bug Fixes

	* Tests failed on case-sensitive file systems (data and Data 
	  directories are the same in Windows, but not in Unix)

1.01	2011-04-17

	Bug Fixes
	
	* FSM-error.t failed on case-sensitive file systems (data and Data 
	  directories are the same in Windows, but not in Unix)

1.00	2011-04-16

	Spin-off of the deterministic top-down parser based on a pre-computed
	finite state machine that was developped for the CPU::Z80::Assembler
	module. 

	New Features
	
	* parse a yacc-like BNF grammar and generate the parser module.
	  Note: the Parse::FSM::Parser module used to parse the BNF grammar 
	  is generated using the primitive add_rule from Parse::FSM.
	  
	* Lexer module based on Perl 5.10 regular expressions, to be subclassed.
	  The Parse::FSM::Lexer provides the primitives to allow recursive 
	  file includes and keeping track of current file and line number. A
	  subclass can override the tokenizer() method that matches the next 
	  token from a string.