Skip to content

Commit

Permalink
feat: add explain-error and only-id arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteoGuadrini committed Feb 4, 2025
1 parent 9ffedf2 commit 63c18aa
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions bb.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -64,7 +64,7 @@
import utility

# region Global Variables
VERSION = "1.15.0"
VERSION = "1.16.0"


# endregion
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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/",
Expand Down

0 comments on commit 63c18aa

Please sign in to comment.