From 6ffde69158a27e934b8f3591ec67c08669a27cfb Mon Sep 17 00:00:00 2001 From: Ken Kundert Date: Sat, 6 Nov 2021 18:57:18 -0700 Subject: [PATCH] bump version to 1.28.0 --- .bump.cfg | 4 ++-- README.rst | 2 +- doc/conf.py | 2 +- doc/index.rst | 2 +- doc/releases.rst | 2 +- emborg/__init__.py | 2 +- setup.py | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.bump.cfg b/.bump.cfg index 02b768d..d92e011 100644 --- a/.bump.cfg +++ b/.bump.cfg @@ -1,7 +1,7 @@ date_fmt = 'YYYY-MM-DD' major = 1 -minor = 27 -patch = 3 +minor = 28 +patch = 0 date = [ 'emborg/__init__.py __released__', 'README.rst Released', diff --git a/README.rst b/README.rst index 1cd90d3..90b7e0c 100644 --- a/README.rst +++ b/README.rst @@ -20,7 +20,7 @@ Emborg — Front-End to Borg Backup :target: https://pypi.python.org/pypi/emborg/ :Author: Ken Kundert -:Version: 1.27.3 +:Version: 1.28.0 :Released: 2021-11-06 *Emborg* is a simple command line utility to orchestrate backups. It is built as diff --git a/doc/conf.py b/doc/conf.py index e62f992..b8998ff 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.27.3' +release = '1.28.0' # The short X.Y version. version = '.'.join(release.split('.')[0:2]) diff --git a/doc/index.rst b/doc/index.rst index df7988e..e2e8e74 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -3,7 +3,7 @@ Emborg — Front-End to Borg Backup ================================= -| Version: 1.27.3 +| Version: 1.28.0 | Released: 2021-11-06 | Please report all bugs and suggestions on `Github `_. diff --git a/doc/releases.rst b/doc/releases.rst index 353d491..2eaa21a 100644 --- a/doc/releases.rst +++ b/doc/releases.rst @@ -3,7 +3,7 @@ Releases Latest development release -------------------------- -| Version: 1.27.3 +| Version: 1.28.0 | Released: 2021-11-06 diff --git a/emborg/__init__.py b/emborg/__init__.py index b0067f4..08cd2c7 100644 --- a/emborg/__init__.py +++ b/emborg/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.27.3" +__version__ = "1.28.0" __released__ = "2021-11-06" from .settings import Settings as Emborg diff --git a/setup.py b/setup.py index 7841f64..a071e0d 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name = "emborg", - version = "1.27.3", + version = "1.28.0", author = "Ken Kundert", author_email = "emborg@nurdletech.com", description = "Borg front end.",