Skip to content

Commit 75bc995

Browse files
committed
bump version and prepare for cpan release
this is a patch release with some bug fixes and duktape engine update to version 1.5.0
1 parent d067ecc commit 75bc995

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

Changes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
Revision 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+
39
1.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)

MANIFEST

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ Changes
22
examples/advanced-array.pl
33
examples/array.pl
44
examples/autoload.pl
5+
examples/buffer.pl
56
examples/date.pl
67
examples/this.pl
78
lib/JavaScript/Duktape.pm
@@ -12,6 +13,7 @@ lib/JavaScript/Duktape/C/duktape.h
1213
lib/JavaScript/Duktape/C/duktape_wrap.c
1314
lib/JavaScript/Duktape/C/FunctionsMap.pl
1415
lib/JavaScript/Duktape/C/libPath.pm
16+
lib/JavaScript/Duktape/C/metadata.json
1517
lib/JavaScript/Duktape/C/ppport.h
1618
lib/JavaScript/Duktape/C/typemap
1719
LICENSE
@@ -55,6 +57,8 @@ t/nested.t
5557
t/objects/01.t
5658
t/objects/02.t
5759
t/objects/03.t
60+
t/objects/buffer.t
61+
t/objects/string.t
5862
t/objects/this.t
5963
t/perl-data.t
6064
t/pointer.t

lib/JavaScript/Duktape.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use warnings;
44
use Carp;
55
use Data::Dumper;
66
use Scalar::Util 'looks_like_number';
7-
our $VERSION = '1.0.1';
7+
our $VERSION = '1.0.2';
88

99
my $GlobalRef = {};
1010
my $THIS;

0 commit comments

Comments
 (0)