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

fixed SQLiteUtil to fetch releases in 2019

This commit is contained in:
Kenichi Ishigaki 2019-02-11 21:50:43 +09:00
parent ce5b33b381
commit 82cdba9f8f

View file

@ -441,6 +441,7 @@ sub year {
my $self = shift;
return "snapshot" if $self->is_snapshot;
my $version = $self->as_num;
return 2019 if $version >= 3270000;
return 2018 if $version >= 3220000;
return 2017 if $version >= 3160000;
return 2016 if $version >= 3100000;