diff options
-rw-r--r-- | Changes | 2 | ||||
-rw-r--r-- | META.json | 4 | ||||
-rw-r--r-- | lib/App/BorgRestore.pm | 2 |
3 files changed, 5 insertions, 3 deletions
@@ -1,6 +1,8 @@ Revision history for Perl extension App-BorgRestore {{$NEXT}} + +3.4.4 2020-10-14T12:37:04Z - Require DBD::SQLite 1.60 or newer to fix issues with schema migration 2 on old systems. - Reduce database size for databases that contained data from before @@ -44,7 +44,7 @@ "runtime" : { "requires" : { "Carp::Assert" : "0", - "DBD::SQLite" : "0", + "DBD::SQLite" : "1.60", "DBI" : "0", "Date::Parse" : "0", "File::pushd" : "0", @@ -94,7 +94,7 @@ "web" : "https://github.com/Bluewind/App-BorgRestore" } }, - "version" : "3.4.3", + "version" : "3.4.4", "x_serialization_backend" : "JSON::PP version 4.04", "x_static_install" : 0 } diff --git a/lib/App/BorgRestore.pm b/lib/App/BorgRestore.pm index cd53609..810be9c 100644 --- a/lib/App/BorgRestore.pm +++ b/lib/App/BorgRestore.pm @@ -2,7 +2,7 @@ package App::BorgRestore; use v5.14; use strictures 2; -our $VERSION = "3.4.3"; +our $VERSION = "3.4.4"; use App::BorgRestore::Borg; use App::BorgRestore::DB; |