Skip to content

Commit 6c4fa3f

Browse files
author
bradfitz
committed
Checking in changes prior to tagging of version 1.27. Changelog diff is:
Index: ChangeLog =================================================================== --- ChangeLog (revision 826) +++ ChangeLog (working copy) @@ -1,3 +1,5 @@ +2009-09-22: version 1.27 + * Fix get() with utf-8 keys (athomason) * "stats malloc" command is gone in 1.4; remove those tests (athomason) git-svn-id: http://code.sixapart.com/svn/memcached/trunk/api/perl@827 b0b603af-a30f-0410-a34e-baf09ae79d0b
1 parent 95ac683 commit 6c4fa3f

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

ChangeLog

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
2009-09-22: version 1.27
2+
13
* Fix get() with utf-8 keys (athomason)
24

35
* "stats malloc" command is gone in 1.4; remove those tests (athomason)

MANIFEST

+1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ t/02_keys.t
1111
t/03_stats.t
1212
t/04_noreply.t
1313
t/05_reconnect_timeout.t
14+
t/06_utf8_key.t
1415
t/100_flush_bug.t

lib/Cache/Memcached.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ use constant F_COMPRESS => 2;
3636
use constant COMPRESS_SAVINGS => 0.20; # percent
3737

3838
use vars qw($VERSION $HAVE_ZLIB $FLAG_NOSIGNAL);
39-
$VERSION = "1.26";
39+
$VERSION = "1.27";
4040

4141
BEGIN {
4242
$HAVE_ZLIB = eval "use Compress::Zlib (); 1;";

0 commit comments

Comments
 (0)