Skip to content

Commit 0fa09cd

Browse files
committed
4.1.1
1 parent d943a44 commit 0fa09cd

File tree

2 files changed

+28
-17
lines changed

2 files changed

+28
-17
lines changed

package.xml

Lines changed: 27 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -27,30 +27,25 @@ http://pear.php.net/dtd/package-2.0.xsd">
2727
<email>[email protected]</email>
2828
<active>yes</active>
2929
</lead>
30-
<date>2018-07-10</date>
30+
<date>2018-08-01</date>
3131
<version>
32-
<release>4.1.0</release>
33-
<api>4.1.0</api>
32+
<release>4.1.1</release>
33+
<api>4.1.1</api>
3434
</version>
3535
<stability>
3636
<release>stable</release>
3737
<api>stable</api>
3838
</stability>
3939
<license uri="http://www.php.net/license">PHP</license>
4040
<notes>
41-
phpredis 4.1.0
42-
43-
The primary new feature of this release is session locking functionality. Thanks to @SkydiveMarius!
44-
45-
* Add callbacks validate_sid and update_timestamp to session handler [aaaf0f23] (@hongboliu)
46-
* Call cluster_disconnect before destroying cluster object. [28ec4322] (Pavlo Yatsukhnenko)
47-
* Bulk strings can be zero length. (Michael Grunder)
48-
* Handle async parameter for flushDb and flushAll [beb6e8f3,acd10409,742cdd05] (Pavlo Yatsukhnenko)
49-
* Split INSTALL and add more instructions [43613d9e,80d2a917] (@remicollet, Pavlo Yatsukhnenko)
50-
* Only the first arg of connect and pconnect is required [063b5c1a] (@mathroc)
51-
* Add session locking functionality [300c7251] (@SkydiveMarius, Michael Grunder, Pavlo Yatsukhnenko)
52-
* Fix compression in RedisCluster [1aed74b4] (Pavlo Yatsukhnenko)
53-
* Refactor geo* commands + documentation improvements (Michael Grunder)
41+
phpredis 4.1.1
42+
43+
This release contains only bugfixes and documentation improvements
44+
45+
* Fix arginfo for Redis::set method [0c5e7f4d] (Pavlo Yatsukhnenko)
46+
* Fix compression in RedisCluster [a53e1a34] (Pavlo Yatsukhnenko)
47+
* Fix TravisCI builds [9bf32d30] (@jrchamp)
48+
* Highlight php codes in documentation [c3b023b0] (@ackintosh)
5449
</notes>
5550
<contents>
5651
<dir name="/">
@@ -119,6 +114,22 @@ http://pear.php.net/dtd/package-2.0.xsd">
119114
<configureoption name="enable-redis-lzf" prompt="enable lzf compression support?" default="no"/>
120115
</extsrcrelease>
121116
<changelog>
117+
<release>
118+
<stability><release>stable</release><api>stable</api></stability>
119+
<version><release>4.1.1</release><api>4.1.1</api></version>
120+
<date>2018-08-01</date>
121+
<notes>
122+
phpredis 4.1.1
123+
124+
This release contains only bugfixes and documentation improvements
125+
126+
* Fix arginfo for Redis::set method [0c5e7f4d] (Pavlo Yatsukhnenko)
127+
* Fix compression in RedisCluster [a53e1a34] (Pavlo Yatsukhnenko)
128+
* Fix TravisCI builds [9bf32d30] (@jrchamp)
129+
* Highlight php codes in documentation [c3b023b0] (@ackintosh)
130+
</notes>
131+
</release>
132+
122133
<release>
123134
<stability><release>stable</release><api>stable</api></stability>
124135
<version><release>4.1.0</release><api>4.1.0</api></version>

php_redis.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#define PHP_REDIS_H
2626

2727
/* phpredis version */
28-
#define PHP_REDIS_VERSION "develop"
28+
#define PHP_REDIS_VERSION "4.1.1"
2929

3030
PHP_METHOD(Redis, __construct);
3131
PHP_METHOD(Redis, __destruct);

0 commit comments

Comments
 (0)