]> granicus.if.org Git - php/commitdiff
- Fix release history
authorMarcus Boerger <helly@php.net>
Fri, 11 May 2007 00:34:45 +0000 (00:34 +0000)
committerMarcus Boerger <helly@php.net>
Fri, 11 May 2007 00:34:45 +0000 (00:34 +0000)
ext/phar/package.php
ext/phar/package.xml

index 3fab369cfdf789d0cd8783e7e3bf7bb24e2fd950..a0e36fe4e47cbae41e50b6c89356b5e7f5c39490 100644 (file)
@@ -1,13 +1,8 @@
 <?php
 
 $notes = '
- * 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 Phar::CanWrite() [Marcus]
+ * add phar command (phar.php) [Marcus] 
 ';
 
 if (!class_exists("Phar") && !extension_loaded("Phar")) {
@@ -58,8 +53,8 @@ $package->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();
index ed7426a3f482187182e2db69c4cff7f8313774d6..01c61576f6563cf1fab315672b665ca8b187d79c 100644 (file)
@@ -203,24 +203,18 @@ avaiable then SHA-256 and SHA-512 signatures are supported as well.</description
  <changelog>
   <release>
    <version>
-    <release>1.1.0RC1</release>
-    <api>1.1.0</api>
+    <release>1.0.1</release>
+    <api>1.0.1</api>
    </version>
    <stability>
-    <release>beta</release>
-    <api>beta</api>
+    <release>stable</release>
+    <api>stable</api>
    </stability>
-   <date>2007-03-26</date>
+   <date>2007-03-28</date>
    <license uri="http://www.php.net/license">PHP License</license>
    <notes>
 
- * implement ability connect a phar file &apos;phar://whatever&apos; 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]
 
    </notes>
   </release>