From: Marcus Boerger Date: Fri, 11 May 2007 00:34:45 +0000 (+0000) Subject: - Fix release history X-Git-Tag: RELEASE_1_2_0~99 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a64c54d02c69616e0fe24e7d7b3602661293408b;p=php - Fix release history --- diff --git a/ext/phar/package.php b/ext/phar/package.php index 3fab369cfd..a0e36fe4e4 100644 --- a/ext/phar/package.php +++ b/ext/phar/package.php @@ -1,13 +1,8 @@ setPackageType('extsrc'); $package->addRelease(); $package->setReleaseVersion(phpversion('phar')); $package->setAPIVersion(Phar::apiVersion()); -$package->setReleaseStability('beta'); -$package->setAPIStability('beta'); +$package->setReleaseStability('stable'); +$package->setAPIStability('stable'); $package->setNotes("\n$notes\n"); //$package->addGlobalReplacement('package-info', '@package_version@', 'version'); $package->generateContents(); diff --git a/ext/phar/package.xml b/ext/phar/package.xml index ed7426a3f4..01c61576f6 100644 --- a/ext/phar/package.xml +++ b/ext/phar/package.xml @@ -203,24 +203,18 @@ avaiable then SHA-256 and SHA-512 signatures are supported as well. - 1.1.0RC1 - 1.1.0 + 1.0.1 + 1.0.1 - beta - beta + stable + stable - 2007-03-26 + 2007-03-28 PHP License - * 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] + * Fix return value of unlink() and rename() when used for phar archievs. [Marcus]