From 4f964d0fe2b96861381febc7d80aa9f8c611891d Mon Sep 17 00:00:00 2001 From: matteoguadrini Date: Fri, 24 May 2024 11:29:37 +0200 Subject: [PATCH] chore: new minor version --- CHANGES.md | 6 +++++- bb.py | 2 +- docs/source/conf.py | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 8d33e34..736855c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,8 +1,12 @@ # Release notes +## 1.12.0 +May 24, 2024 +* Add **--no-color** argument + ## 1.11.0 Feb 15, 2024 -* Add **-file-data** argument in *backup* action +* 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 diff --git a/bb.py b/bb.py index 5c13039..47e6ccb 100755 --- a/bb.py +++ b/bb.py @@ -64,7 +64,7 @@ import utility # region Global Variables -VERSION = "1.11.0" +VERSION = "1.12.0" # endregion diff --git a/docs/source/conf.py b/docs/source/conf.py index 519d5ae..dba7f9e 100755 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,7 +25,7 @@ author = "Matteo Guadrini " # The short X.Y version -version = "1.11.0" +version = "1.12.0" # The full version, including alpha/beta/rc tags release = "" diff --git a/pyproject.toml b/pyproject.toml index d641080..3252592 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ py-modules = ["bb", "utility"] [project] name = "Butterfly-Backup" -version = "1.11.0" +version = "1.12.0" readme = "README.md" license = {text = "GNU General Public License v3.0"} keywords = ['backup', 'archive', 'restore', 'rsync', 'catalog', 'list', diff --git a/setup.py b/setup.py index 5690b49..5d07160 100755 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ setup( name="Butterfly-Backup", py_modules=["bb", "utility"], - version="1.10.0", + version="1.12.0", url="https://matteoguadrini.github.io/Butterfly-Backup/", project_urls={ "Documentation": "https://butterfly-backup.readthedocs.io/en/latest/",