Skip to content

Commit

Permalink
feat: new major version
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteoGuadrini committed Feb 15, 2024
1 parent 301e9ca commit c6f9ecb
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Release notes

## 1.11.0
Feb 15, 2024
* Add **-file-data** argument in *backup* action
* Add **--force** argument in *every* action
* Add *confirm* function to every potentially destrucive actions
* Fix returns of *get_last_backup* function
* Fix **--version** argument

## 1.10.0
Jul 1, 2023
* Add **report_issue** function
Expand Down
6 changes: 4 additions & 2 deletions bb.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Manpage for Butterfly Backup.
.\" Contact matteo.guadrini@hotmail.it to correct errors or typos.
.TH man 1 "Jul 1, 2023" "1.10.0" "bb man page"
.TH man 1 "Feb 15, 2024" "1.11.0" "bb man page"
.SH NAME
bb \- Butterfly Backup - backup/restore/archive tool , agentless
.SH SYNOPSIS
Expand Down Expand Up @@ -158,6 +158,7 @@ Deploy configuration:
--verbose, -v Enable verbosity
--log, -l Create a log
--dry-run, -N Dry run mode
--force, -O Force an action without prompt
--version, -V Print version

.SH EXAMPLES
Expand Down Expand Up @@ -203,7 +204,8 @@ Reset backup catalog:
Full documentation is here:
https://butterfly-backup.readthedocs.io/en/latest/
.SH BUGS
No known bugs. If you known, open an issue here: https://github.com/MatteoGuadrini/Butterfly-Backup/issues
Bug #7: differential backup seems to behave like full backup
If you known, open an issue here: https://github.com/MatteoGuadrini/Butterfly-Backup/issues
.SH AUTHOR
Matteo Guadrini <matteo.guadrini@hotmail.it>
.SH COPYRIGHT
Expand Down
4 changes: 2 additions & 2 deletions bb.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
SYNOPSIS
bb [ACTION] [OPTIONS]
bb [-h] [--verbose] [--log] [--dry-run] [--version]
bb [-h] [--verbose] [--log] [--dry-run] [--force] [--version]
{config,backup,restore,archive,list,export} ...
OPTIONS
Expand Down Expand Up @@ -65,7 +65,7 @@
from utility import print_verbose

# region Global Variables
VERSION = "1.10.0"
VERSION = "1.11.0"


# endregion
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
author = "Matteo Guadrini <matteo.guadrini@hotmail.it>"

# The short X.Y version
version = "1.9.0"
version = "1.11.0"
# The full version, including alpha/beta/rc tags
release = ""

Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Indices and tables
Requirements
############

Butterfly Backup is a *simple* wrapper of rsync written in python; this means the first requirements is python3.3 or higher.
Butterfly Backup is a *simple* wrapper of rsync written in python; this means the first requirements is python3.8 or higher.
The other requirement is a **openssh** and **rsync** (version 2.5 or higher).
Ok, let's go!

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.10.0"
version = "1.11.0"
readme = "README.md"
license = {text = "GNU General Public License v3.0"}
keywords = ['backup', 'archive', 'restore', 'rsync', 'catalog', 'list',
Expand Down

0 comments on commit c6f9ecb

Please sign in to comment.