File tree Expand file tree Collapse file tree 4 files changed +14
-8
lines changed Expand file tree Collapse file tree 4 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 1
1
Revision history for AnyEvent::RipeRedis.
2
2
3
+ 0.16 Tue Aug 30 11:00:00 MSK 2016
4
+ - %ERROR_CODES moved to AnyEvent::RipeRedis::Error.
5
+ - Minor changes in unit tests.
6
+ - Changes in POD.
7
+
3
8
0.14 Mon Aug 29 17:01:40 MSK 2016
4
9
- Removed unnecessary string in unit test.
5
10
@@ -29,4 +34,4 @@ Revision history for AnyEvent::RipeRedis.
29
34
- Removed unused code. Cosmetic.
30
35
31
36
0.02 Mon Jul 25 15:37:30 MSK 2016
32
- - First stable release of new incarnation of AnyEvent::Redis::RipeRedis.
37
+ - First release of new incarnation of AnyEvent::Redis::RipeRedis.
Original file line number Diff line number Diff line change 1
- AnyEvent-RipeRedis version 0.15_01
1
+ AnyEvent-RipeRedis version 0.16
2
2
======================
3
3
4
4
INSTALLATION
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use strict;
5
5
use warnings;
6
6
use base qw( Exporter ) ;
7
7
8
- our $VERSION = ' 0.15_01 ' ;
8
+ our $VERSION = ' 0.16 ' ;
9
9
10
10
use AnyEvent::RipeRedis::Error;
11
11
@@ -1215,10 +1215,11 @@ an error messages to C<STDERR>.
1215
1215
1216
1216
=head2 <command>( [ @args ] [, $cb->( $reply, $err ) ] )
1217
1217
1218
- To execute the command you must call specific method. The reply to the command
1219
- is passed to the callback in first argument. If any error occurred during
1220
- the command execution, the error object is passed to the callback in second
1221
- argument. Error object is an instance of the class L<AnyEvent::RipeRedis::Error> .
1218
+ To execute the command you must call specific method with corresponding name.
1219
+ The reply to the command is passed to the callback in first argument. If any
1220
+ error occurred during the command execution, the error object is passed to the
1221
+ callback in second argument. Error object is an instance of the class
1222
+ L<AnyEvent::RipeRedis::Error> .
1222
1223
1223
1224
The command callback is optional. If it is not specified and any error
1224
1225
occurred, the C<on_error > callback of the client is called.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ use 5.008000;
4
4
use strict;
5
5
use warnings;
6
6
7
- our $VERSION = ' 0.15_01 ' ;
7
+ our $VERSION = ' 0.16 ' ;
8
8
9
9
our %ERROR_CODES = (
10
10
E_CANT_CONN => 1,
You can’t perform that action at this time.
0 commit comments