From cd1695e2739242a1e5af0e7d7949f95a95ddbed9 Mon Sep 17 00:00:00 2001 From: Maxime Lucas Date: Mon, 2 Sep 2024 12:19:58 +0100 Subject: [PATCH] updated version number for new release --- CHANGELOG.md | 5 +++++ docs/source/conf.py | 4 ++-- xgi/__init__.py | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d2ec0673..9bf7e6d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog +## v0.8.10 + +- Migrating to the PyData theme for the online docs [#576](https://github.com/xgi-org/xgi/pull/576) (@maximelucas). + ## v0.8.9 + * Added a new recipe to address Issue [#549](https://github.com/xgi-org/xgi/issues/549) [#574](https://github.com/xgi-org/xgi/pull/574) (@nwlandry). * Added the `edge_ec` argument to the `draw` method to specify edge colors [#575](https://github.com/xgi-org/xgi/pull/575) (@maximelucas). * Switched from setup.py to pyproject.toml for installation [#573](https://github.com/xgi-org/xgi/pull/573) (@nwlandry). diff --git a/docs/source/conf.py b/docs/source/conf.py index 978fd912..ae03e468 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -21,9 +21,9 @@ # -- Project information ----------------------------------------------------- project = "XGI" copyright = "2021-2024 XGI Developers" -release = "0.8.9" +release = "0.8.10" version = release -today = "30-08-2024" +today = "02-09-2024" # -- General configuration --------------------------------------------------- diff --git a/xgi/__init__.py b/xgi/__init__.py index bb8aade8..88b33f9f 100644 --- a/xgi/__init__.py +++ b/xgi/__init__.py @@ -22,4 +22,4 @@ from .stats import * -__version__ = "0.8.9" +__version__ = "0.8.10"