From 942db60d4ecc4569909008390a8d3febb6b74a6f Mon Sep 17 00:00:00 2001 From: Ken Kundert Date: Tue, 5 Nov 2024 08:40:22 -0800 Subject: [PATCH] bump version to 1.40.4 --- README.rst | 4 ++-- doc/conf.py | 2 +- doc/index.rst | 4 ++-- doc/releases.rst | 4 ++-- emborg/__init__.py | 4 ++-- pyproject.toml | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.rst b/README.rst index 286089c..f64ded1 100644 --- a/README.rst +++ b/README.rst @@ -4,8 +4,8 @@ Emborg — Front-End to Borg Backup |downloads| |build status| |coverage| |rtd status| |pypi version| |python version| :Author: Ken Kundert -:Version: 1.40.3 -:Released: 2024-11-04 +:Version: 1.40.4 +:Released: 2024-11-05 *Emborg* is a simple command line utility to orchestrate backups. It is built as a front-end to Borg, a powerful and fast deduplicating backup program. With diff --git a/doc/conf.py b/doc/conf.py index 36786c4..8b69ca3 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -56,7 +56,7 @@ # built documents. # # The full version, including alpha/beta/rc tags. -release = '1.40.3' +release = '1.40.4' # The short X.Y version. version = '.'.join(release.split('.')[0:2]) diff --git a/doc/index.rst b/doc/index.rst index f8099ad..9065c8b 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -3,8 +3,8 @@ Emborg — Front-End to Borg Backup ================================= -| Version: 1.40.3 -| Released: 2024-11-04 +| Version: 1.40.4 +| Released: 2024-11-05 | Please report all bugs and suggestions on GitHub_. diff --git a/doc/releases.rst b/doc/releases.rst index 7968741..a3908bb 100644 --- a/doc/releases.rst +++ b/doc/releases.rst @@ -3,8 +3,8 @@ Releases Latest development release -------------------------- -| Version: 1.40.3 -| Released: 2024-11-04 +| Version: 1.40.4 +| Released: 2024-11-05 1.41 (2024-11-??) ----------------- diff --git a/emborg/__init__.py b/emborg/__init__.py index 357fffa..9aff6cf 100644 --- a/emborg/__init__.py +++ b/emborg/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.40.3" -__released__ = "2024-11-04" +__version__ = "1.40.4" +__released__ = "2024-11-05" from .emborg import Emborg diff --git a/pyproject.toml b/pyproject.toml index e8b84b2..92c4e2d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "emborg" -version = "1.40.3" +version = "1.40.4" description = "Borg front end." readme = "README.rst" keywords = ["emborg", "borg", "borgbackup", "borgmatic", "vorta", "backups"]