From 0ff7ed56ded814b8af11f4936cf759a6d8b2ceee Mon Sep 17 00:00:00 2001 From: Ken Kundert Date: Sat, 25 Jan 2025 00:36:14 -0800 Subject: [PATCH] bump version to 0.0b4 --- .bump.cfg.nt | 2 +- README.rst | 4 ++-- assimilate/__init__.py | 4 ++-- doc/conf.py | 2 +- doc/index.rst | 4 ++-- doc/releases.rst | 4 ++-- pyproject.toml | 2 +- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.bump.cfg.nt b/.bump.cfg.nt index 3a75ec9..0b925bf 100644 --- a/.bump.cfg.nt +++ b/.bump.cfg.nt @@ -1,7 +1,7 @@ major: 0 minor: 0 patch: 0 -revision: 3 +revision: 4 type: beta files: pyproject.toml: diff --git a/README.rst b/README.rst index 7ad2b92..397b60e 100644 --- a/README.rst +++ b/README.rst @@ -7,8 +7,8 @@ Assimilate — Front-End to Borg Backup |downloads| |build status| |coverage| |rtd status| |pypi version| |python version| :Author: Ken Kundert -:Version: 0.0b3 -:Released: 2025-01-14 +:Version: 0.0b4 +:Released: 2025-01-25 *Assimilate* is a simple command line utility to orchestrate backups. It is built as a front-end to Borg_, a powerful and fast de-duplicating backup diff --git a/assimilate/__init__.py b/assimilate/__init__.py index 330b7e4..58aa8f6 100644 --- a/assimilate/__init__.py +++ b/assimilate/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0b3" -__released__ = "2025-01-14" +__version__ = "0.0b4" +__released__ = "2025-01-25" from .assimilate import Assimilate, Error as AssimilateError diff --git a/doc/conf.py b/doc/conf.py index 8431cbb..7595697 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -56,7 +56,7 @@ # built documents. # # The full version, including alpha/beta/rc tags. -release = '0.0b3' +release = '0.0b4' # The short X.Y version. version = '.'.join(release.split('.')[0:2]) diff --git a/doc/index.rst b/doc/index.rst index 7e1571e..1194c9c 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -5,8 +5,8 @@ Assimilate — Front-End to Borg Backup ===================================== -| Version: 0.0b3 -| Released: 2025-01-14 +| Version: 0.0b4 +| Released: 2025-01-25 | Please report all bugs and suggestions on GitHub_. diff --git a/doc/releases.rst b/doc/releases.rst index adf93e1..db1d02c 100644 --- a/doc/releases.rst +++ b/doc/releases.rst @@ -30,8 +30,8 @@ earlier versions of *Borg* you should use Emborg_. Latest development release -------------------------- -| Version: 0.0b3 -| Released: 2025-01-14 +| Version: 0.0b4 +| Released: 2025-01-25 0.0.0 (2025-??-??) ------------------ diff --git a/pyproject.toml b/pyproject.toml index 6be8807..ea22be4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "assimilate" -version = "0.0b3" +version = "0.0b4" description = "Borg front end." readme = "README.rst" keywords = ["assimilate", "emborg", "borg", "borgmatic", "backups"]