Skip to content

Commit 9f08adf

Browse files
committed
Fixes in POD. Prepared to release
1 parent 76e414b commit 9f08adf

File tree

4 files changed

+16
-11
lines changed

4 files changed

+16
-11
lines changed

Changes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
Revision history for AnyEvent::RipeRedis.
22

3+
0.10 Wed Aug 26 11:44:35 MSK 2016
4+
- Removed "on_connect_error" callback.
5+
- POD Improved.
6+
- Unit tests improved.
7+
38
0.08 Wed Aug 25 11:18:30 MSK 2016
49
- Added method "execute()".
510
- Getter "selected_database()" renamed to "database()".

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AnyEvent-RipeRedis version 0.09_01
1+
AnyEvent-RipeRedis version 0.10
22
======================
33

44
INSTALLATION

lib/AnyEvent/RipeRedis.pm

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use strict;
55
use warnings;
66
use base qw( Exporter );
77

8-
our $VERSION = '0.09_01';
8+
our $VERSION = '0.10';
99

1010
use AnyEvent::RipeRedis::Error;
1111

@@ -1187,11 +1187,11 @@ Disabled by default.
11871187
=item reconnect => $boolean
11881188
11891189
If the connection to the server was lost and the parameter C<reconnect> is
1190-
TRUE (default), the client try to restore the connection when you execute next
1191-
command. The client try to reconnect only once and, if attempt fails, the error
1192-
object is passed to command callback. If you need several attempts of the
1193-
reconnection, you must retry a command from the callback as many times, as you
1194-
need. Such behavior allows to control reconnection procedure.
1190+
TRUE (default), the client will try to restore the connection when you execute
1191+
next command. The client will try to reconnect only once and, if attempt fails,
1192+
the error object is passed to command callback. If you need several attempts of
1193+
the reconnection, you must retry a command from the callback as many times, as
1194+
you need. Such behavior allows to control reconnection procedure.
11951195
11961196
Enabled by default.
11971197
@@ -1244,16 +1244,16 @@ an error messages to C<STDERR>.
12441244
12451245
=head2 <command>( [ @args ] [, $cb->( $reply, $err ) ] )
12461246
1247-
The full list of the Redis commands can be found here: L<http://redis.io/commands>.
1248-
12491247
To execute the command you must call specific method. The reply to the command
12501248
is passed to the callback in first argument. If any error occurred during
1251-
command execution, the error object is passed to the callback in second
1249+
the command execution, the error object is passed to the callback in second
12521250
argument. Error object is an instance of the class L<AnyEvent::RipeRedis::Error>.
12531251
12541252
The command callback is optional. If it is not specified and any error
12551253
occurred, the C<on_error> callback of the client is called.
12561254
1255+
The full list of the Redis commands can be found here: L<http://redis.io/commands>.
1256+
12571257
$redis->get( 'foo',
12581258
sub {
12591259
my $reply = shift;

lib/AnyEvent/RipeRedis/Error.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use 5.008000;
44
use strict;
55
use warnings;
66

7-
our $VERSION = '0.09_01';
7+
our $VERSION = '0.10';
88

99

1010
sub new {

0 commit comments

Comments
 (0)