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:
parent
843ecf112f
commit
a4126d6742
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue