diff options
| author | Tokuhiro Matsuno <tokuhirom@gmail.com> | 2009-07-02 17:43:58 +0900 |
|---|---|---|
| committer | Tokuhiro Matsuno <tokuhirom@gmail.com> | 2009-07-02 17:43:58 +0900 |
| commit | 3446c475d753b54cb2103753610fbc6a9596cae4 (patch) | |
| tree | 540e63fb171816a9bc76dd5a024a9b0ddc6b70a1 | |
| parent | ffef0a0b6fd6963e0465652c38185ead937e9545 (diff) | |
| download | msgpack-python-3446c475d753b54cb2103753610fbc6a9596cae4.tar.gz | |
Checking in changes prior to tagging of version 0.03. Changelog diff is:
diff --git a/perl/Changes b/perl/Changes
index fb31a69..0c170a3 100644
--- a/perl/Changes
+++ b/perl/Changes
@@ -1,3 +1,8 @@
+0.03
+
+ - performance tuning for too long string
+ - fixed memory leaks in stream unpacker
+
0.02
- added $Data::MessagePack::PreferInteger
| -rw-r--r-- | perl/Changes | 5 | ||||
| -rw-r--r-- | perl/lib/Data/MessagePack.pm | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/perl/Changes b/perl/Changes index fb31a69..0c170a3 100644 --- a/perl/Changes +++ b/perl/Changes @@ -1,3 +1,8 @@ +0.03 + + - performance tuning for too long string + - fixed memory leaks in stream unpacker + 0.02 - added $Data::MessagePack::PreferInteger diff --git a/perl/lib/Data/MessagePack.pm b/perl/lib/Data/MessagePack.pm index 712d3b5..2368a5b 100644 --- a/perl/lib/Data/MessagePack.pm +++ b/perl/lib/Data/MessagePack.pm @@ -4,7 +4,7 @@ use warnings; use XSLoader; use 5.008001; -our $VERSION = '0.02'; +our $VERSION = '0.03'; XSLoader::load(__PACKAGE__, $VERSION); |
