Skip to content

Commit

Permalink
Release 1.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei Zmievski committed Jul 7, 2009
1 parent e5f0ab9 commit 7ca7a87
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 17 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
@@ -1,5 +1,13 @@
memcached extension changelog

Version 1.0.0
-------------
* First stable release.
* Add getResultMessage() method.
* Fix OPT_RECV_TIMEOUT definition.
* Initialize Session lock wait to max execution time (if max execution
time is unlimited, default to 30 seconds).

Version 0.2.0
-------------
* Add JSON serializer support, requires PHP 5.2.10+.
Expand Down
2 changes: 2 additions & 0 deletions memcached-api.php
Expand Up @@ -145,6 +145,8 @@ public function getStats( ) {}

public function getResultCode( ) {}

public function getResultMessage( ) {}

}

class MemcachedException extends Exception {
Expand Down
39 changes: 23 additions & 16 deletions package.xml
Expand Up @@ -15,28 +15,22 @@ http://pear.php.net/dtd/package-2.0.xsd">
<email>andrei@php.net</email>
<active>yes</active>
</lead>
<date>2009-06-04</date>
<date>2009-07-07</date>
<version>
<release>0.2.0</release>
<api>0.2.0</api>
<release>1.0.0</release>
<api>1.0.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
- Refactor the way payload types are stored in memcached flags to optimize the structure
and allow for future expansion. WARNING! You have to flush the cache when upgrading from
an older version.
- Add JSON serializer support, requires PHP 5.2.10+.
- Add HAVE_JSON and HAVE_IGBINARY class constants that indicate whether the respective
serializers are available.
- Add 'flags' parameter to getMulti() and getMultiByKey().
- Add GET_PRESERVE_ORDER class constant that can be used with abovementioned flags
parameter to make the order of the keys in the response match the request.
- Fix an issue with retrieving 0-length payloads (FALSE boolean value).
- Add several tests.
- First stable release.
- Add getResultMessage() method.
- Fix OPT_RECV_TIMEOUT definition.
- Initialize Session lock wait to max execution time (if max execution
time is unlimited, default to 30 seconds).
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -67,6 +61,19 @@ http://pear.php.net/dtd/package-2.0.xsd">
<providesextension>memcached</providesextension>
<extsrcrelease/>
<changelog>
<release>
<stability><release>stable</release><api>stable</api></stability>
<version><release>1.0.0</release><api>1.0.0</api></version>
<date>2009-07-04</date>
<notes>
- First stable release.
- Add getResultMessage() method.
- Fix OPT_RECV_TIMEOUT definition.
- Initialize Session lock wait to max execution time (if max execution
time is unlimited, default to 30 seconds).
</notes>
</release>

<release>
<stability><release>beta</release><api>beta</api></stability>
<version><release>0.2.0</release><api>0.2.0</api></version>
Expand Down
2 changes: 1 addition & 1 deletion php_memcached.h
Expand Up @@ -48,7 +48,7 @@ PHP_MINIT_FUNCTION(memcached);
PHP_MSHUTDOWN_FUNCTION(memcached);
PHP_MINFO_FUNCTION(memcached);

#define PHP_MEMCACHED_VERSION "0.2.0"
#define PHP_MEMCACHED_VERSION "1.0.0"

#ifdef ZTS
#define MEMC_G(v) TSRMG(php_memcached_globals_id, zend_php_memcached_globals *, v)
Expand Down

0 comments on commit 7ca7a87

Please sign in to comment.