1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

show also a tag for a changed constant

This commit is contained in:
Kenichi Ishigaki 2018-12-22 05:20:14 +09:00
parent 843ecf112f
commit a4126d6742

View file

@ -363,8 +363,8 @@ sub check_api_history {
next; next;
} }
my $diff = Array::Diff->diff($current{$key}, $constants{$key}); my $diff = Array::Diff->diff($current{$key}, $constants{$key});
print "$version: added $_\n" for @{$diff->added || []}; print "$version: added $_ ($key)\n" for @{$diff->added || []};
print "$version: deleted $_\n" for @{$diff->deleted || []}; print "$version: deleted $_ ($key)\n" for @{$diff->deleted || []};
} }
} }
%current = %constants; %current = %constants;