Skip to content

Commit 4904817

Browse files
committed
Changes in POD. Prepared to release
1 parent a02f560 commit 4904817

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

Changes

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

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+
38
0.14 Mon Aug 29 17:01:40 MSK 2016
49
- Removed unnecessary string in unit test.
510

@@ -29,4 +34,4 @@ Revision history for AnyEvent::RipeRedis.
2934
- Removed unused code. Cosmetic.
3035

3136
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.

README

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

44
INSTALLATION

lib/AnyEvent/RipeRedis.pm

Lines changed: 6 additions & 5 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.15_01';
8+
our $VERSION = '0.16';
99

1010
use AnyEvent::RipeRedis::Error;
1111

@@ -1215,10 +1215,11 @@ an error messages to C<STDERR>.
12151215
12161216
=head2 <command>( [ @args ] [, $cb->( $reply, $err ) ] )
12171217
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>.
12221223
12231224
The command callback is optional. If it is not specified and any error
12241225
occurred, the C<on_error> callback of the client is called.

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.15_01';
7+
our $VERSION = '0.16';
88

99
our %ERROR_CODES = (
1010
E_CANT_CONN => 1,

0 commit comments

Comments
 (0)