From 53b74cd5274f9ff150673fcc5bee1a4e5a9bc44b Mon Sep 17 00:00:00 2001 From: Ken Kundert Date: Tue, 4 Jan 2022 19:12:31 -0800 Subject: [PATCH] bump version to 1.30.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 eb23672..4560628 100644 --- a/.bump.cfg +++ b/.bump.cfg @@ -1,7 +1,7 @@ date_fmt = 'YYYY-MM-DD' major = 1 -minor = 29 -patch = 1 +minor = 30 +patch = 0 date = [ 'emborg/__init__.py __released__', 'README.rst Released', diff --git a/README.rst b/README.rst index a5315bc..6585881 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.29.1 -:Released: 2021-12-26 +:Version: 1.30.0 +:Released: 2022-01-04 *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 ceccfca..23d1a3a 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.29.1' +release = '1.30.0' # The short X.Y version. version = '.'.join(release.split('.')[0:2]) diff --git a/doc/index.rst b/doc/index.rst index 7df780d..c4107f1 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -3,8 +3,8 @@ Emborg — Front-End to Borg Backup ================================= -| Version: 1.29.1 -| Released: 2021-12-26 +| Version: 1.30.0 +| Released: 2022-01-04 | Please report all bugs and suggestions on `Github `_. diff --git a/doc/releases.rst b/doc/releases.rst index 60bc3c6..7fac00b 100644 --- a/doc/releases.rst +++ b/doc/releases.rst @@ -3,8 +3,8 @@ Releases Latest development release -------------------------- -| Version: 1.29.1 -| Released: 2021-12-26 +| Version: 1.30.0 +| Released: 2022-01-04 1.30 (2022-01-04) diff --git a/emborg/__init__.py b/emborg/__init__.py index 20c7c35..532cbe3 100644 --- a/emborg/__init__.py +++ b/emborg/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.29.1" -__released__ = "2021-12-26" +__version__ = "1.30.0" +__released__ = "2022-01-04" from .settings import Settings as Emborg diff --git a/setup.py b/setup.py index becbf8f..19b1fd9 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name = "emborg", - version = "1.29.1", + version = "1.30.0", author = "Ken Kundert", author_email = "emborg@nurdletech.com", description = "Borg front end.",