From 4190c1cbbf92eab138cd85666336821e8f54f3c7 Mon Sep 17 00:00:00 2001 From: Ken Kundert Date: Mon, 11 Nov 2019 08:36:19 -0800 Subject: [PATCH] bump version to 1.10.0 --- .bump.cfg | 2 +- 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, 11 insertions(+), 11 deletions(-) diff --git a/.bump.cfg b/.bump.cfg index dc7d0b9..693cd0b 100644 --- a/.bump.cfg +++ b/.bump.cfg @@ -1,6 +1,6 @@ date_fmt = 'YYYY-MM-DD' major = 1 -minor = 9 +minor = 10 patch = 0 date = [ 'emborg/__init__.py __released__', diff --git a/README.rst b/README.rst index ddf6543..f792ed5 100644 --- a/README.rst +++ b/README.rst @@ -8,8 +8,8 @@ Emborg — Front-End to Borg Backup :target: https://pypi.python.org/pypi/emborg/ :Author: Ken Kundert -:Version: 1.9.0 -:Released: 2019-11-08 +:Version: 1.10.0 +:Released: 2019-11-11 *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 881a3e9..871e040 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.9.0' +release = '1.10.0' # The short X.Y version. version = '.'.join(release.split('.')[0:2]) diff --git a/doc/index.rst b/doc/index.rst index 8fd09f6..d0bfbcb 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -3,8 +3,8 @@ Emborg — Front-End to Borg Backup ================================= -| Version: 1.9.0 -| Released: 2019-11-08 +| Version: 1.10.0 +| Released: 2019-11-11 | Please report all bugs and suggestions at `Github `_ (or contact me directly at `emborg@nurdletech.com diff --git a/doc/releases.rst b/doc/releases.rst index 9554f3f..6d18683 100644 --- a/doc/releases.rst +++ b/doc/releases.rst @@ -2,8 +2,8 @@ Releases ======== **Latest development release**: - | Version: 1.9.0 - | Released: 2019-11-08 + | Version: 1.10.0 + | Released: 2019-11-11 **1.10 (2019-11-11)**: diff --git a/emborg/__init__.py b/emborg/__init__.py index bfef70b..2d6fe90 100644 --- a/emborg/__init__.py +++ b/emborg/__init__.py @@ -1,4 +1,4 @@ -__version__ = '1.9.0' -__released__ = '2019-11-08' +__version__ = '1.10.0' +__released__ = '2019-11-11' from .settings import Settings as Emborg diff --git a/setup.py b/setup.py index f5d6d11..67c203a 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name = 'emborg', - version = '1.9.0', + version = '1.10.0', author = 'Ken Kundert', author_email = 'emborg@nurdletech.com', description = 'Borg front end.',