From 0cce51b7c9c39e4ee8ecd460cc8aa62c32354616 Mon Sep 17 00:00:00 2001 From: nwlandry Date: Mon, 8 Aug 2022 17:31:41 -0400 Subject: [PATCH] up-versioning --- CHANGELOG.md | 4 ++++ CITATION.cff | 2 +- docs/source/conf.py | 2 +- setup.py | 6 +++--- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa31e52b4..4345cc7b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v0.4.2 +* Keyword arguments are now consistent in the `draw()` function ([#148](https://github.com/ComplexGroupInteractions/xgi/pull/148)). +* Notebooks are now formatted with black and the requirements have been updated to reflect this ([#148](https://github.com/ComplexGroupInteractions/xgi/pull/148)). + ## v0.4.1 * Added the ability to color nodes and edges in `xgi.draw()` by value, iterable, or NodeStat/EdgeStat ([#139](https://github.com/ComplexGroupInteractions/xgi/pull/139), [#142](https://github.com/ComplexGroupInteractions/xgi/pull/142), and [#143](https://github.com/ComplexGroupInteractions/xgi/pull/143)). * Fixed the distortion of the node aspect ratio with different figure sizes in [Issue #137](https://github.com/ComplexGroupInteractions/xgi/issues/137). diff --git a/CITATION.cff b/CITATION.cff index 204f5516d..2acfe6fbe 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -24,5 +24,5 @@ cff-version: "1.1.0" license: "BSD-3" message: "If you use this software, please cite it using these metadata." title: XGI -version: "0.4.1" +version: "0.4.2" ... \ No newline at end of file diff --git a/docs/source/conf.py b/docs/source/conf.py index fb7100a55..75528b42b 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,7 +25,7 @@ author = "Nicholas W. Landry, Leo Torres, Iacopo Iacopini, Maxime Lucas, Giovanni Petri, Alice Patania" # The full version, including alpha/beta/rc tags -release = "0.4.1" +release = "0.4.2" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 56ad85058..1dc99e14c 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ import setuptools from setuptools import setup -__version__ = "0.4.1" +__version__ = "0.4.2" if sys.version_info < (3, 7): sys.exit("XGI requires Python 3.7 or later.") @@ -12,9 +12,9 @@ version = __version__ -authors = "Nicholas Landry and Leo Torres" +authors = "Nicholas Landry, Leo Torres, Maxime Lucas, Iacopo Iacopini, Giovanni Petri, and Alice Patania" -author_email = "nicholas.landry@colorado.edu" +author_email = "nicholas.landry@uvm.edu" project_urls = { "Documentation": "https://xgi.readthedocs.io/en/latest/",