The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 03
META.json 22
META.yml 22
lib/Protocol/HTTP2.pm 11
t/12_leaks.t 01
5 files changed (This is a version diff) 59
@@ -1,5 +1,8 @@
 Revision history for Perl extension Protocol-HTTP2
 
+1.02 2015-06-22T17:27:01Z
+    - fixed leaks test
+
 1.01 2015-06-21T14:17:54Z
     - fixed leaks in Server/Client code
     - new test to check leaks
@@ -63,7 +63,7 @@
    "provides" : {
       "Protocol::HTTP2" : {
          "file" : "lib/Protocol/HTTP2.pm",
-         "version" : "1.01"
+         "version" : "1.02"
       },
       "Protocol::HTTP2::Client" : {
          "file" : "lib/Protocol/HTTP2/Client.pm"
@@ -146,5 +146,5 @@
          "web" : "https://github.com/vlet/p5-Protocol-HTTP2"
       }
    },
-   "version" : "1.01"
+   "version" : "1.02"
 }
@@ -30,7 +30,7 @@ no_index:
 provides:
   Protocol::HTTP2:
     file: lib/Protocol/HTTP2.pm
-    version: '1.01'
+    version: '1.02'
   Protocol::HTTP2::Client:
     file: lib/Protocol/HTTP2/Client.pm
   Protocol::HTTP2::Connection:
@@ -85,4 +85,4 @@ resources:
   bugtracker: https://github.com/vlet/p5-Protocol-HTTP2/issues
   homepage: https://github.com/vlet/p5-Protocol-HTTP2
   repository: git://github.com/vlet/p5-Protocol-HTTP2.git
-version: '1.01'
+version: '1.02'
@@ -3,7 +3,7 @@ use 5.008005;
 use strict;
 use warnings;
 
-our $VERSION = "1.01";
+our $VERSION = "1.02";
 
 sub ident_plain {
     'h2c';
@@ -129,6 +129,7 @@ no_leaks_ok {
     fake_connect( $server, $client );
     undef $client;
     undef $server;
+    undef $s_stream;
 };
 
 done_testing;