* Version 1.2.3 (stable) - API 1.1.0 (stable) - 2007-11-22

* fix creation of Phar object with relative path:
  $a = new Phar('blah.phar');
* fix creation and read of Phar objects on Windows, manage
  windows path separators (on windows only)
* phar.phar is now installed as a script, and can be run as "phar.phar"
* phar.phar looks for PHP in /usr/local/bin/php by default
* fix Bug #12492: filenew incorrectly creates file path [urkle]
* fix Bug #12493: extract throws an error and won't open the file [urkle]

* Version 1.2.3 (stable) - API 1.1.0 (stable) - 2007-11-22

* fix creation of Phar object with relative path:
  $a = new Phar('blah.phar');
* fix creation and read of Phar objects on Windows, manage
  windows path separators (on windows only)
* phar.phar is now installed as a script, and can be run as "phar.phar"
* phar.phar looks for PHP in /usr/local/bin/php by default
* fix Bug #12492: filenew incorrectly creates file path [urkle]
* fix Bug #12493: extract throws an error and won't open the file [urkle]

* Version 1.2.2 (stable) - API 1.1.0 (stable) - 2007-10-03

* fix to work with PHP 5.3
* fix Bug #12124: Phar object cannot be iterated over
* remove unused variables
* fix jit file open sprintf calls

* Version 1.2.1 (stable) - API 1.1.0 (stable) - 2007-08-29

* improve speed of uncompressed phars used readonly by 2x [Greg]
* improve speed of phars with signatures 2x [Greg]
* add Phar::setAlias() [Greg]
* fix too many open file handles issue [Greg]
* fix rename [Greg]
* add Phar::getAlias() [Marcus]
* Made -a optional in pack subcommand of phar.phar [Marcus]
* Fix issue with apache module and extracted archives [Marcus]
* Send all error messages to stderr in phar.phar [Marcus]
* Added new subcommands add and delete to phar.phar [Marcus]
* Made Phar::loadPhar() and Phar::mapPhar() ignore extracted archives [Marcus]
* Fix issue with compressed entries and uncompressing entries [Marcus]
* Verify stubs before writing [Marcus]
* Always use longest stub end to avoid issues with length field [Marcus]

* Version 1.2.0 (stable) - API 1.1.0 (stable) - 2007-05-18

* add PharFileInfo::hasMetadata(), PharFileInfo::delMetadata() [Marcus]
* add Phar::hasMetadata(), Phar::delMetadata() [Marcus]
* fix Phar::CanWrite() [Marcus]
* add preliminary phar command (phar.php) [Marcus] 
* add phar command (phar.phar) [Marcus]
* list all available compression methods using Phar::getSupportedCompression() [Marcus]
* remove RINIT [Marcus]

* Version 1.1.0 (stable) - API 1.1.0 (stable) - 2007-04-12

* implement ability connect a phar file 'phar://whatever' to a directory. That way all
  access to that phar archive are directed to the extracted directory. This
  allows to have the installed files and the archieve keep the same includes.
  [Marcus]
* implement SHA-2 (256, 512) support [Marcus]
* implement setSignatureAlgorithm() and Phar::MD5 Phar::SHA1 Phar::SHA256 Phar::SHA512 Phar::PGP to
  choose the kind of signature to use (PGP falls back to SHA1) [Greg]

* Version 1.0.1 (stable) - API 1.0.1 (stable) - 2007-03-28

* Fix return value of unlink() and rename() when used for phar archievs. [Marcus]

* Version 1.0.0 (stable) - API 1.0.0 (stable) - 2007-03-26

*BACKWARDS COMPATIBILITY BREAK*
Rename Phar->begin/isFlushingToPhar/commit to startBuffering/isBuffering/stopBuffering
Note that isBuffering() returns the opposite value to isFlushingToPhar()

