From 93779af196efe60396915d1744f07714073a15fa Mon Sep 17 00:00:00 2001 From: Geoffroy Desvernay Date: Fri, 31 May 2024 16:40:05 +0200 Subject: [PATCH] 1.6 release --- doc/source/conf.py | 4 ++-- iocage_cli/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index dd5e0169..0c2780bf 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -57,9 +57,9 @@ # built documents. # # The short X.Y version. -version = u'1.5' +version = u'1.6' # The full version, including alpha/beta/rc tags. -release = u'1.5' +release = u'1.6' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/iocage_cli/__init__.py b/iocage_cli/__init__.py index acfb9365..6b0d5854 100644 --- a/iocage_cli/__init__.py +++ b/iocage_cli/__init__.py @@ -68,7 +68,7 @@ def print_version(ctx, param, value): if not value or ctx.resilient_parsing: return - print("Version\t1.5") + print("Version\t1.6") sys.exit() diff --git a/setup.py b/setup.py index a2db18d0..1a18cbdd 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ if sys.version_info < (3, 8): exit("Only Python 3.8 and higher is supported.") -VERSION = '1.5' +VERSION = '1.6' setup( name='iocage_lib',