diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f110a44e..0157993ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v0.8.2 +* Added an XGI-DATA page to ReadTheDocs with network statistics [#496](https://github.com/xgi-org/xgi/pull/496) (@nwlandry). +* Added syntax highlighting in the tutorials [#497](https://github.com/xgi-org/xgi/pull/497) (@thomasrobiglio). +* Changed the xgi-data index location to Github to support the move to Zenodo-hosted datasets [#494](https://github.com/xgi-org/xgi/pull/494) (@nwlandry) +* Update the list of publications using XGI [#493](https://github.com/xgi-org/xgi/pull/493) (@nwlandry). + ## v0.8.1 * Added the ability to draw a convex hull as an option in `draw_hyperedges` [#491](https://github.com/xgi-org/xgi/pull/491) (@maximelucas). * Fixed sphinx documentation errors [#487](https://github.com/xgi-org/xgi/pull/487) (@nwlandry). diff --git a/docs/source/conf.py b/docs/source/conf.py index 6d471a9d4..482971eed 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -21,7 +21,7 @@ # -- Project information ----------------------------------------------------- project = "XGI" copyright = "Copyright (C) 2021-2023 XGI Developers" -release = "0.8.1" +release = "0.8.2" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index a89c1871e..3ccfbe81a 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ import setuptools from setuptools import setup -__version__ = "0.8.1" +__version__ = "0.8.2" if sys.version_info < (3, 8): sys.exit("XGI requires Python 3.8 or later.")