File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 11Revision history for Perl module JavaScript::Duktape
22
3+ 1.0.2 2016 2016-05-03
4+ - bug fix double free of the same heapptr
5+ - adding more objects tests
6+ - fix warning message Use of "shift" without parentheses is ambiguous in tests
7+ - upgrade duktape to v1.5.0
8+
391.0.1 2016 2016-04-07
410 - bug fix undefined arguments not getting through (Rodrigo de Oliveira)
511 - add undefined arguments test (Rodrigo de Oliveira)
Original file line number Diff line number Diff line change 22examples/advanced-array.pl
33examples/array.pl
44examples/autoload.pl
5+ examples/buffer.pl
56examples/date.pl
67examples/this.pl
78lib/JavaScript/Duktape.pm
@@ -12,6 +13,7 @@ lib/JavaScript/Duktape/C/duktape.h
1213lib/JavaScript/Duktape/C/duktape_wrap.c
1314lib/JavaScript/Duktape/C/FunctionsMap.pl
1415lib/JavaScript/Duktape/C/libPath.pm
16+ lib/JavaScript/Duktape/C/metadata.json
1517lib/JavaScript/Duktape/C/ppport.h
1618lib/JavaScript/Duktape/C/typemap
1719LICENSE
@@ -55,6 +57,8 @@ t/nested.t
5557t/objects/01.t
5658t/objects/02.t
5759t/objects/03.t
60+ t/objects/buffer.t
61+ t/objects/string.t
5862t/objects/this.t
5963t/perl-data.t
6064t/pointer.t
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ use warnings;
44use Carp;
55use Data::Dumper;
66use Scalar::Util ' looks_like_number' ;
7- our $VERSION = ' 1.0.1 ' ;
7+ our $VERSION = ' 1.0.2 ' ;
88
99my $GlobalRef = {};
1010my $THIS ;
You can’t perform that action at this time.
0 commit comments