From f98abde25eb31f1c0750e2e777e9f96a7c47b883 Mon Sep 17 00:00:00 2001 From: Ken Kundert Date: Sun, 12 Jan 2025 13:25:20 -0800 Subject: [PATCH] beta bump --- .bump.cfg.nt | 4 ++-- 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, 12 insertions(+), 12 deletions(-) diff --git a/.bump.cfg.nt b/.bump.cfg.nt index 33d5056..cd26174 100644 --- a/.bump.cfg.nt +++ b/.bump.cfg.nt @@ -1,8 +1,8 @@ major: 0 minor: 0 patch: 0 -revision: 0 -type: alpha +revision: 1 +type: beta files: pyproject.toml: version: version diff --git a/README.rst b/README.rst index ed4ae4f..b9d45da 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.0a0 -:Released: 2024-12-08 +:Version: 0.0b1 +:Released: 2025-01-12 *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 8eefd18..4e06859 100644 --- a/assimilate/__init__.py +++ b/assimilate/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0a0" -__released__ = "2024-12-08" +__version__ = "0.0b1" +__released__ = "2025-01-12" from .assimilate import Assimilate, Error as AssimilateError diff --git a/doc/conf.py b/doc/conf.py index 73dc30f..9e3b7be 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.0a0' +release = '0.0b1' # The short X.Y version. version = '.'.join(release.split('.')[0:2]) diff --git a/doc/index.rst b/doc/index.rst index 4a73ade..0de3bde 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -5,8 +5,8 @@ Assimilate — Front-End to Borg Backup ===================================== -| Version: 0.0a0 -| Released: 2024-12-08 +| Version: 0.0b1 +| Released: 2025-01-12 | Please report all bugs and suggestions on GitHub_. diff --git a/doc/releases.rst b/doc/releases.rst index c5de38a..4d135f5 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.0a0 -| Released: 2024-12-08 +| Version: 0.0b1 +| Released: 2025-01-12 0.0.0 (2025-??-??) ------------------ diff --git a/pyproject.toml b/pyproject.toml index f95ee01..a219ea4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "assimilate" -version = "0.0a0" +version = "0.0b1" description = "Borg front end." readme = "README.rst" keywords = ["assimilate", "emborg", "borg", "borgmatic", "backups"]