diff --git a/CHANGES.md b/CHANGES.md index 115528b..d87a4fb 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,11 @@ # Release notes +## 1.16.0 +Feb 04, 2025 +* Add **--explain-error** argument +* Add **--only-id** argument into _list_ action +* Fix _ignore-times_ option into rsync in _restore_ action + ## 1.15.0 Jan 18, 2025 * Add **--acl** argument in _restore_ action diff --git a/bb.py b/bb.py index db674f2..dd41c5f 100755 --- a/bb.py +++ b/bb.py @@ -31,8 +31,8 @@ SYNOPSIS bb [ACTION] [OPTIONS] - bb [-h] [--verbose] [--log] [--dry-run] [--force] [--no-color] [--version] - {config,backup,restore,archive,list,export} ... + bb [-h] [--verbose] [--log] [--dry-run] [--force] [--no-color] + [--explain-error] [--version] {config,backup,restore,archive,list,export} ... OPTIONS action: @@ -64,7 +64,7 @@ import utility # region Global Variables -VERSION = "1.15.0" +VERSION = "1.16.0" # endregion diff --git a/pyproject.toml b/pyproject.toml index 4fa0173..c9032ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ py-modules = ["bb", "utility"] [project] name = "Butterfly-Backup" -version = "1.15.0" +version = "1.16.0" readme = "README.md" license = { text = "GNU General Public License v3.0" } keywords = [ diff --git a/setup.py b/setup.py index 5a836e7..0c3fcdb 100755 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ setup( name="Butterfly-Backup", py_modules=["bb", "utility"], - version="1.15.0", + version="1.16.0", url="https://matteoguadrini.github.io/Butterfly-Backup/", project_urls={ "Documentation": "https://butterfly-backup.readthedocs.io/en/latest/",