Changeset 277

Show
Ignore:
Timestamp:
10/11/06 16:13:29 (2 years ago)
Author:
bart
Message:

Prepare 0.9.5 release

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • eaccelerator/branches/0.9.5/ChangeLog

    r276 r277  
    22 
    33        * Fix a bug in the ttl of the cache. see ticket #182 
     4        * Release version 0.9.5 
    45 
    562006-09-19  Hans Rakers <hans at parse dot nl> 
  • eaccelerator/branches/0.9.5/NEWS

    r241 r277  
     1Oct 11, 2006 - Bart Vanbrabant 
     2---------------------------------- 
     3 
     4 * Released 0.9.6 
     5 
     6    Changes in this version (from 0.9.4): 
     7        - This version brings full php 5.1 and 5.2 support, this has as  
     8          side-effect that eAccelerator won't work anymore with php 4 on windows, 
     9          on other platforms this isn't a problem. 
     10        - The shared memory functions, session handler and content cache are  
     11          disabled by default now. They are only used by a small amount of 
     12          users and they could allow local users to fill up the memory, if they 
     13          aren't secured properly. 
     14        - The old web control panel and the disassembler have been removed  
     15          from the code. They have been replaced with a set of php functions  
     16          that allow the same functionality to be implemented in a PHP script. 
     17          The control.php and the dasm.php files are such scripts. More  
     18          information about this can be found in the README. 
     19        - Memory footprint should be reduced because redundant information in 
     20          the cached scripts is no longer stored. Keeping this information  
     21          cached can be done with --with-eaccelerator-doc-comment-inclusion 
     22        - File hashing in the cache directory to improve performance with a  
     23          big amount of cache files. 
     24    WARNING: The encoder and loader DO not support php 5.1 nor php 5.0 and contain 
     25    a lot of bug for php 4. This is the last release the encoder/loader  
     26    functionality will be available. Maybe later a new encoder/loader will be  
     27    included but there aren't any plans for that. 
     28    As always all patches and help are more then welcome. 
     29 
    130Jul 24, 2006 - Bart Vanbrabant 
    231---------------------------------- 
  • eaccelerator/branches/0.9.5/eaccelerator_version.h

    r237 r277  
    11#ifndef EACCELERATOR_VERSION 
    2 #define EACCELERATOR_VERSION "0.9.5-rc1
     2#define EACCELERATOR_VERSION "0.9.5
    33#endif 
  • eaccelerator/trunk/ChangeLog

    r276 r277  
    22 
    33        * Fix a bug in the ttl of the cache. see ticket #182 
    4  
     4        * Release version 0.9.5 
    55 
    662006-09-19  Hans Rakers <hans at parse dot nl> 
  • eaccelerator/trunk/NEWS

    r241 r277  
     1Oct 11, 2006 - Bart Vanbrabant 
     2---------------------------------- 
     3 
     4 * Released 0.9.6 
     5 
     6    Changes in this version (from 0.9.4): 
     7        - This version brings full php 5.1 and 5.2 support, this has as  
     8          side-effect that eAccelerator won't work anymore with php 4 on windows, 
     9          on other platforms this isn't a problem. 
     10        - The shared memory functions, session handler and content cache are  
     11          disabled by default now. They are only used by a small amount of 
     12          users and they could allow local users to fill up the memory, if they 
     13          aren't secured properly. 
     14        - The old web control panel and the disassembler have been removed  
     15          from the code. They have been replaced with a set of php functions  
     16          that allow the same functionality to be implemented in a PHP script. 
     17          The control.php and the dasm.php files are such scripts. More  
     18          information about this can be found in the README. 
     19        - Memory footprint should be reduced because redundant information in 
     20          the cached scripts is no longer stored. Keeping this information  
     21          cached can be done with --with-eaccelerator-doc-comment-inclusion 
     22        - File hashing in the cache directory to improve performance with a  
     23          big amount of cache files. 
     24    WARNING: The encoder and loader DO not support php 5.1 nor php 5.0 and contain 
     25    a lot of bug for php 4. This is the last release the encoder/loader  
     26    functionality will be available. Maybe later a new encoder/loader will be  
     27    included but there aren't any plans for that. 
     28    As always all patches and help are more then welcome. 
     29 
    130Jul 24, 2006 - Bart Vanbrabant 
    231----------------------------------