]> granicus.if.org Git - php/commitdiff
Releasing 1.0....
authorJohn Coggeshall <john@php.net>
Thu, 13 Nov 2003 17:50:39 +0000 (17:50 +0000)
committerJohn Coggeshall <john@php.net>
Thu, 13 Nov 2003 17:50:39 +0000 (17:50 +0000)
ext/tidy/package.xml
ext/tidy/tidy.c

index b7f6e26d9b34137ae022bd29afa02e5fd6b2acf4..266cc5d7c669151f4677c7076fcbbe0f4f9b66ac 100644 (file)
@@ -24,21 +24,11 @@ but also traverse the document tree using the Zend Engine 2 OO semantics.
  </description>
  <license>PHP</license>
  <release>
-  <state>beta</state>
-  <version>0.7</version>
-  <date>2003-05-07</date>
+  <state>stable</state>
+  <version>1.0</version>
+  <date>2003-11-13</date>
   <notes>
-    The tidy extension now works in PHP4 for most tasks, only the parsing
-    abilities of the extension are not available (ZE2 only). The OO portions
-    of the extension have been completely re-written and are now stable and
-    work quite well. 
-
-    The way all tidy functions work has also changed slightly. Instead of
-    calling tidy_create() to create a tidy resource, the tidy resource is
-    stored internally and used as needed. Thus, all tidy functions no longer
-    need the initial $tidy parameter to function. If you'd like to reset
-    tidy to an initial state, you can still call tidy_create(). This change
-    was done to make tidy faster per-request. 
+    Fixed a few PHP5-specific bugs when working with node objects. 
   </notes>
   <configureoptions>
     <configureoption name="with-tidy" default="autodetect" prompt="Tidy library installation dir?"/>
@@ -65,7 +55,7 @@ but also traverse the document tree using the Zend Engine 2 OO semantics.
    <file role="test" name="tests/007.phpt"/>
   </filelist>
   <deps>
-   <dep type="php" rel="ge">5.0.0</dep>
+   <dep type="php" rel="ge">4.3.0</dep>
   </deps>
  </release>
 </package>
index f584cbd673debe03df5fe266255b1130570d6584..c67e29c2718df12a6e182502a8056f39308d79da 100644 (file)
@@ -146,7 +146,7 @@ zend_module_entry tidy_module_entry = {
        NULL,
        PHP_MINFO(tidy),
 #if ZEND_MODULE_API_NO >= 20010901
-       "0.7b",
+       "1.0",
 #endif
        STANDARD_MODULE_PROPERTIES
 };