Skip to content

Commit

Permalink
up-version
Browse files Browse the repository at this point in the history
  • Loading branch information
nwlandry committed Jul 25, 2023
1 parent ab7d4b6 commit 059b9c9
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## v0.7.2
* Listed the available statistics in the stats module [#405](https://github.com/xgi-org/xgi/pull/405) (@thomasrobiglio).
* Implemented functions from this [article](https://doi.org/10.1038/s41467-023-37190-9) [#400](https://github.com/xgi-org/xgi/pull/400) (@maximelucas).
* Reorganized the `convert` module [#423](https://github.com/xgi-org/xgi/pull/423) (@nwlandry).
* Refactored the core data structures and removed the `function.py` file, moving the functions to other locations [#412](https://github.com/xgi-org/xgi/pull/412) (@nwlandry).
* Small documentation fixes [#422](https://github.com/xgi-org/xgi/pull/422) (@nwlandry).
* Added a webpage listing projects and papers that use XGI [#416](https://github.com/xgi-org/xgi/pull/416) (@nwlandry).
* Added an optinion so that only the text in the Jupyter Notebooks counts towards the line counts [#417](https://github.com/xgi-org/xgi/pull/417) (@nwlandry).
* Fixed the `_color_arg_to_dict` and `_scalar_arg_to_dict` functions so they are more consistent [#402](https://github.com/xgi-org/xgi/pull/402) (@nwlandry).
* Fixed the IDView.ids type [#406](https://github.com/xgi-org/xgi/pull/406) (@leotrs).

## v0.7.1
* Fix: Converting from a `SimplicialComplex` to a `Hypergraph` now adds all of its faces to the hypergraph, not just the maximal faces. Added unit tests for converting between `Hypergraph` and `SimplicialComplex` classes [#399](https://github.com/xgi-org/xgi/pull/399) (@thomasrobiglio).
* Moved the list of contributors from the readthedocs, license, setup, etc. into a dedicated file so that when contributors join or leave, we only update a single file. Renamed `CONTRIBUTING.md` to `HOW_TO_CONTRIBUTE.md`. [#401](https://github.com/xgi-org/xgi/pull/401) (@nwlandry).
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# -- Project information -----------------------------------------------------
project = "XGI"
copyright = "Copyright (C) 2021-2023 XGI Developers"
release = "0.7.1"
release = "0.7.2"

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import setuptools
from setuptools import setup

__version__ = "0.7.1"
__version__ = "0.7.2"

if sys.version_info < (3, 8):
sys.exit("XGI requires Python 3.8 or later.")
Expand Down

0 comments on commit 059b9c9

Please sign in to comment.