From 23cc3729473552bcf28b27a614e813c8f500e73e Mon Sep 17 00:00:00 2001 From: Nicholas Landry Date: Fri, 9 Dec 2022 17:43:44 -0500 Subject: [PATCH] Increased version number to 0.5.1 --- CITATION.cff | 2 +- docs/source/conf.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 4af3ec239..2c4009252 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -29,4 +29,4 @@ cff-version: "1.1.0" license: "BSD-3" message: "If you use this software, please cite it using these metadata." title: XGI -version: "0.5.0" +version: "0.5.1" diff --git a/docs/source/conf.py b/docs/source/conf.py index 6426af093..4a75a7d9f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -21,7 +21,7 @@ # -- Project information ----------------------------------------------------- project = "XGI" copyright = "Copyright (C) 2022 XGI Developers" -release = "0.5.0" +release = "0.5.1" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index c4b39bd7d..a44047a62 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ import setuptools from setuptools import setup -__version__ = "0.5.0" +__version__ = "0.5.1" if sys.version_info < (3, 7): sys.exit("XGI requires Python 3.7 or later.")