diff --git a/CHANGELOG b/CHANGELOG index 56fcc15..f3c9fd0 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,10 @@ vX.X.X (unreleased) +=================== + +v1.6.0 (unreleased) =================== * Add support for Dropbox backend (by xmatthias) + * Fix issue #177: bug in `--cleanup` action (thanks smcgrat) v1.5.0 (2018-01-15) =================== @@ -12,7 +16,7 @@ v1.4.3 (2017-10-30) v1.4.2 (2017-10-30) =================== - * Remove VERSION file and hardcode it directly in the script. + * Remove VERSION file and hardcode it directly in the script. Fix issue #164 (thanks regelga) v1.4.1 (2017-10-04) =================== diff --git a/duplicity-backup.conf.example b/duplicity-backup.conf.example index 4c32058..bb100c3 100644 --- a/duplicity-backup.conf.example +++ b/duplicity-backup.conf.example @@ -2,7 +2,7 @@ # # Copyright (c) 2008-2010 Damon Timm. # Copyright (c) 2010 Mario Santagiuliana. -# Copyright (c) 2012-2016 Marc Gallet. +# Copyright (c) 2012-2018 Marc Gallet. # # This program is free software: you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software diff --git a/duplicity-backup.sh b/duplicity-backup.sh index 1d9df0c..79467ac 100755 --- a/duplicity-backup.sh +++ b/duplicity-backup.sh @@ -2,7 +2,7 @@ # # Copyright (c) 2008-2010 Damon Timm. # Copyright (c) 2010 Mario Santagiuliana. -# Copyright (c) 2012-2017 Marc Gallet. +# Copyright (c) 2012-2018 Marc Gallet. # # This program is free software: you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software @@ -45,7 +45,7 @@ CONFIG="duplicity-backup.conf" # Script Happens Below This Line - Shouldn't Require Editing # ############################################################## -DBSH_VERSION="v1.5.0" +DBSH_VERSION="v1.6.0" # make a backup of stdout and stderr for later exec 6>&1