From d7070bea4a84037e6ff680e9cac7f19a268b85b2 Mon Sep 17 00:00:00 2001 From: Ken Kundert Date: Sat, 22 Oct 2022 20:03:01 -0700 Subject: [PATCH] bump version to 1.33.0 --- README.rst | 4 ++-- doc/conf.py | 2 +- doc/index.rst | 4 ++-- doc/releases.rst | 4 ++-- emborg/__init__.py | 4 ++-- pyproject.toml | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.rst b/README.rst index 1ba39cb..1c562a4 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.33.0rc1 -:Released: 2022-10-21 +:Version: 1.33.0 +:Released: 2022-10-22 *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 2323a08..1aa87a3 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.33.0rc1' +release = '1.33.0' # The short X.Y version. version = '.'.join(release.split('.')[0:2]) diff --git a/doc/index.rst b/doc/index.rst index ff97b93..6f9b87f 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -3,8 +3,8 @@ Emborg — Front-End to Borg Backup ================================= -| Version: 1.33.0rc1 -| Released: 2022-10-21 +| Version: 1.33.0 +| Released: 2022-10-22 | Please report all bugs and suggestions on GitHub_. diff --git a/doc/releases.rst b/doc/releases.rst index 20b75c3..ae51c80 100644 --- a/doc/releases.rst +++ b/doc/releases.rst @@ -3,8 +3,8 @@ Releases Latest development release -------------------------- -| Version: 1.33.0rc1 -| Released: 2022-10-21 +| Version: 1.33.0 +| Released: 2022-10-22 1.33 (2022-10-22) diff --git a/emborg/__init__.py b/emborg/__init__.py index 8eb4b12..94c12e1 100644 --- a/emborg/__init__.py +++ b/emborg/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.33.0rc1" -__released__ = "2022-10-21" +__version__ = "1.33.0" +__released__ = "2022-10-22" from .settings import Settings as Emborg diff --git a/pyproject.toml b/pyproject.toml index f74473f..2298d03 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "emborg" -version = "1.33.0rc1" +version = "1.33.0" description = "Borg front end." readme = "README.rst" license = {file = "LICENSE"}