From 9e43d4edefa091463c91cea0541c0b9322ddff4c Mon Sep 17 00:00:00 2001 From: Sam Tygier Date: Wed, 8 Sep 2021 15:26:33 +0100 Subject: [PATCH] Update version to 2.2 --- CITATION.cff | 2 +- docs/conf.py | 4 ++-- mantidimaging/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 65c7a46b4f7..1eca743c6a2 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -19,7 +19,7 @@ authors: given-names: Sam orcid: https://orcid.org/0000-0002-7495-8655 title: "Mantid Imaging" -version: "2.1.0" +version: "2.2.0" doi: 10.5281/zenodo.4728059 date-released: 2021-04-29 license: "GPL-3.0-or-later" diff --git a/docs/conf.py b/docs/conf.py index 54b863302d8..b13d3d0db6f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -74,9 +74,9 @@ # built documents. # # The short X.Y version. -version = u'2.1' +version = u'2.2' # The full version, including alpha/beta/rc tags. -release = u'2.1.0' +release = u'2.2.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/mantidimaging/__init__.py b/mantidimaging/__init__.py index 881c3ecc8bf..b8599d4cb5a 100644 --- a/mantidimaging/__init__.py +++ b/mantidimaging/__init__.py @@ -1,7 +1,7 @@ # Copyright (C) 2021 ISIS Rutherford Appleton Laboratory UKRI # SPDX - License - Identifier: GPL-3.0-or-later -__version__ = '2.1.0rc' +__version__ = '2.2.0' """ The gui package is not imported here, because it will pull in all of PyQt packages, which we do not want when using only the CLI. This is both a speedup diff --git a/setup.py b/setup.py index 21828fa38f7..ed96d330162 100644 --- a/setup.py +++ b/setup.py @@ -205,7 +205,7 @@ def run(self): setup( name="mantidimaging", - version="2.1.0rc", + version="2.2.0", packages=find_packages(), package_data={ "mantidimaging.gui": ["ui/*.ui", "ui/images/*.png", "windows/wizard/*.yml"],