The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
0.06	2010-10-15
	Bug Fixes
	* Solved problem with test scripts: 
	  done_testing() requires Test::More 0.96

0.05	2010-10-12
	Bug Fixes
	* Solved problem with test scripts: 
	  Bareword "done_testing" not allowed while "strict subs" in use

0.04	2010-09-30
	New Features
	* Add tokenizer Asm::Preproc::Lexer

	Other
	* Use Class::XSAccessor::Array for objects
	* Asm::Preproc::Stream is simpler and faster

0.03	2010-09-21
	Bug Fixes
	* Perl 5.6 can only declare one constant at a time; replace 
	    use constant { A => 1, B => 2, ...}
	  by
	    use constant A => 1; use constant B => 2; ...

0.02	2010-09-10
	Bug Fixes
	* Tests failed: missing dependencies in Makefile.PL

	Other
	* Add acknowledgement to HOP::Stream

0.01	2010-09-10
	Other
	* First version, based on CPU::Z80::Assembler::Preprocessor.
	* Made an independent module because it is not specific to the 
	  Z80 assembly language.