From 67b6bd98f9e8e6d8f6ddf7f6bc4980147be0a460 Mon Sep 17 00:00:00 2001 From: Ken Kundert Date: Sat, 28 Aug 2021 12:57:00 -0700 Subject: [PATCH] bump version to 1.25.0 --- .bump.cfg | 4 ++-- README.rst | 4 ++-- doc/conf.py | 2 +- doc/index.rst | 4 ++-- doc/releases.rst | 4 ++-- emborg/__init__.py | 4 ++-- setup.py | 2 +- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.bump.cfg b/.bump.cfg index f9f6051..d7a220c 100644 --- a/.bump.cfg +++ b/.bump.cfg @@ -1,7 +1,7 @@ date_fmt = 'YYYY-MM-DD' major = 1 -minor = 24 -patch = 2 +minor = 25 +patch = 0 date = [ 'emborg/__init__.py __released__', 'README.rst Released', diff --git a/README.rst b/README.rst index 38bde02..8cf1312 100644 --- a/README.rst +++ b/README.rst @@ -20,8 +20,8 @@ Emborg — Front-End to Borg Backup :target: https://pypi.python.org/pypi/emborg/ :Author: Ken Kundert -:Version: 1.24.2 -:Released: 2021-08-26 +:Version: 1.25.0 +:Released: 2021-08-28 *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 ec3b125..5bdf95f 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -55,7 +55,7 @@ # built documents. # # The full version, including alpha/beta/rc tags. -release = '1.24.2' +release = '1.25.0' # The short X.Y version. version = '.'.join(release.split('.')[0:2]) diff --git a/doc/index.rst b/doc/index.rst index 8a4f108..554e1d7 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -3,8 +3,8 @@ Emborg — Front-End to Borg Backup ================================= -| Version: 1.24.2 -| Released: 2021-08-26 +| Version: 1.25.0 +| Released: 2021-08-28 | Please report all bugs and suggestions on `Github `_. diff --git a/doc/releases.rst b/doc/releases.rst index 2f642a3..0d0dffa 100644 --- a/doc/releases.rst +++ b/doc/releases.rst @@ -3,8 +3,8 @@ Releases Latest development release -------------------------- -| Version: 1.24.2 -| Released: 2021-08-26 +| Version: 1.25.0 +| Released: 2021-08-28 1.25 (2021-08-28) diff --git a/emborg/__init__.py b/emborg/__init__.py index 5b80c15..cd027da 100644 --- a/emborg/__init__.py +++ b/emborg/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.24.2" -__released__ = "2021-08-26" +__version__ = "1.25.0" +__released__ = "2021-08-28" from .settings import Settings as Emborg diff --git a/setup.py b/setup.py index a803943..7affc03 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name = "emborg", - version = "1.24.2", + version = "1.25.0", author = "Ken Kundert", author_email = "emborg@nurdletech.com", description = "Borg front end.",