From dda8d551a0bb8b36d10b72771ee28ab27afbf039 Mon Sep 17 00:00:00 2001 From: Nicholas Landry Date: Mon, 2 Dec 2024 18:15:49 -0500 Subject: [PATCH] up-version --- CHANGELOG.md | 8 ++++++++ xgi/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05e2f691..fbe55d6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## v0.9.3 +* Added the ability for `load_xgi_data` to read HIF and added HIF dicts to the convert module. [#613](https://github.com/xgi-org/xgi/pull/613) (@nwlandry) +* Added a custom Changelog generator to use XGI formatting. [#626](https://github.com/xgi-org/xgi/pull/626) (@nwlandry) +* Removed unnecesary asv files and added benchmarks. [#631](https://github.com/xgi-org/xgi/pull/631) (@nwlandry) +* Added a benchmark GitHub Action with `pytest-benchmark`. [#630](https://github.com/xgi-org/xgi/pull/630) (@nwlandry) +* Added release hashes for `asv`. [#628](https://github.com/xgi-org/xgi/pull/628) (@nwlandry) +* [BREAKING] Replaced the `id` variable with `idx` in XGI (Fixes Issue [#619](https://github.com/xgi-org/xgi/issues/619)). [#620](https://github.com/xgi-org/xgi/pull/620) (@nwlandry) + ## v0.9.2 * Added nonuniform centralities and fixed the `node_edge_centrality` method [#600](https://github.com/xgi-org/xgi/pull/600) (@nwlandry). * Fixed Issue [#615](https://github.com/xgi-org/xgi/issues/615). Added a docstring to the `watts_strogatz_hypergraph` method [#618](https://github.com/xgi-org/xgi/pull/618) (@nwlandry). diff --git a/xgi/__init__.py b/xgi/__init__.py index a8d0a496..888d8761 100644 --- a/xgi/__init__.py +++ b/xgi/__init__.py @@ -22,4 +22,4 @@ from .stats import * -__version__ = "0.9.2" +__version__ = "0.9.3"