Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.36.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index f0c9ef4..ca10749 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,8 @@
 Revision history for Redis
 
 {{$NEXT}}
+
+0.36 2023-07-05T20:20:13Z
     - Define PERL_NO_GET_CONTEXT #142 (thanks @JRaspass)
     - Support password auth with sentinels #144 (thanks @Yenya)
  • Loading branch information
shogo82148 committed Jul 5, 2023
1 parent 951a748 commit 77ebb59
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Revision history for Redis

{{$NEXT}}

0.36 2023-07-05T20:20:13Z
- Define PERL_NO_GET_CONTEXT #142 (thanks @JRaspass)
- Support password auth with sentinels #144 (thanks @Yenya)

Expand Down
3 changes: 2 additions & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"web" : "https://github.com/shogo82148/Redis-Fast"
}
},
"version" : "0.35",
"version" : "0.36",
"x_contributors" : [
"Aaron Crane <arc@aaroncrane.co.uk>",
"Aaron Crane <arc@cpan.org>",
Expand All @@ -95,6 +95,7 @@
"Ivan Kruglov <ivan.kruglov@booking.com>",
"Ivan Kruglov <ivan.kruglov@yahoo.com>",
"James Raspass <jraspass@gmail.com>",
"Jan \"Yenya\" Kasprzak <kas@fi.muni.cz>",
"Jeff Lavallee <jeff@zeroclue.com>",
"Jose Luis Perez Diez <jluis@escomposlinux.org>",
"João Bolila <joao@bolila.com>",
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,13 @@ Redis::Fast - Perl binding for Redis database
name => sub { "cache-$$-".++$generation },
);

## Use Sentinels, possibly with password
my $redis = Redis::Fast->new(
sentinels => [ '10.0.0.1:16379', '10.0.0.2:16379', ],
service => 'mymaster',
sentinels_password => 'TheB1gS3CR3T', # optional
);

## Use UNIX domain socket
my $redis = Redis::Fast->new(sock => '/path/to/socket');

Expand Down
2 changes: 1 addition & 1 deletion lib/Redis/Fast.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Redis::Fast;

BEGIN {
use XSLoader;
our $VERSION = '0.35';
our $VERSION = '0.36';
XSLoader::load __PACKAGE__, $VERSION;
}

Expand Down

0 comments on commit 77ebb59

Please sign in to comment.