diff options
-rw-r--r-- | Changes | 2 | ||||
-rw-r--r-- | META.json | 2 | ||||
-rw-r--r-- | lib/App/BorgRestore.pm | 2 |
3 files changed, 4 insertions, 2 deletions
@@ -1,6 +1,8 @@ Revision history for Perl extension App-BorgRestore {{$NEXT}} + +3.3.0 2019-02-07T16:18:41Z - Support borg list's --prefix option via $borg_prefix setting - Properly handle cases where the DB is empty after removal of archive information @@ -93,7 +93,7 @@ "web" : "https://github.com/Bluewind/App-BorgRestore" } }, - "version" : "3.2.1", + "version" : "3.3.0", "x_serialization_backend" : "JSON::PP version 2.97001", "x_static_install" : 0 } diff --git a/lib/App/BorgRestore.pm b/lib/App/BorgRestore.pm index 1e923c5..afbe918 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.2.1"; +our $VERSION = "3.3.0"; use App::BorgRestore::Borg; use App::BorgRestore::DB; |