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:
parent
ce5b33b381
commit
82cdba9f8f
1 changed files with 1 additions and 0 deletions
|
@ -441,6 +441,7 @@ sub year {
|
||||||
my $self = shift;
|
my $self = shift;
|
||||||
return "snapshot" if $self->is_snapshot;
|
return "snapshot" if $self->is_snapshot;
|
||||||
my $version = $self->as_num;
|
my $version = $self->as_num;
|
||||||
|
return 2019 if $version >= 3270000;
|
||||||
return 2018 if $version >= 3220000;
|
return 2018 if $version >= 3220000;
|
||||||
return 2017 if $version >= 3160000;
|
return 2017 if $version >= 3160000;
|
||||||
return 2016 if $version >= 3100000;
|
return 2016 if $version >= 3100000;
|
||||||
|
|
Loading…
Add table
Reference in a new issue