Skip to content

Commit a61d670

Browse files
committed
Up-version and update changelog
1 parent 18bddba commit a61d670

2 files changed

Lines changed: 28 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Changelog
22

3+
## v0.10.2
4+
5+
* Feature: Added compressed file I/O. [#709](https://github.com/xgi-org/xgi/pull/709) (@kaiser-dan)
6+
* Docs: automated the generation of the "Using XGI" page. [#710](https://github.com/xgi-org/xgi/pull/710) (@nwlandry)
7+
* Optimized line graph construction. [#706](https://github.com/xgi-org/xgi/pull/706) (@Ved235)
8+
* Added examples to the gallery. [#711](https://github.com/xgi-org/xgi/pull/711) (@maximelucas)
9+
* Feature: add type stubs for stats on view classes. [#700](https://github.com/xgi-org/xgi/pull/700) (@leotrs)
10+
* Docs: introduce stats earlier, add cheat sheet, link quickstart. [#701](https://github.com/xgi-org/xgi/pull/701) (@leotrs)
11+
* Feature: forward stat function docstrings to stat objects. [#708](https://github.com/xgi-org/xgi/pull/708) (@leotrs)
12+
* Docs: added references to using-xgi.rst. [#698](https://github.com/xgi-org/xgi/pull/698) (@jbd7qp)
13+
* Feature: make built-in stats discoverable in dir() and IDE autocomplete. [#699](https://github.com/xgi-org/xgi/pull/699) (@leotrs)
14+
* Fix: update ReadTheDocs OS to ubuntu-24.04. (Closes Issue [#702](https://github.com/xgi-org/xgi/issues/702)) [#703](https://github.com/xgi-org/xgi/pull/703) (@leotrs)
15+
* Feature: add `__repr__`, `__copy__`, `__deepcopy__` to core classes. [#693](https://github.com/xgi-org/xgi/pull/693) (@leotrs)
16+
* Docs: cross-reference algorithms and stats from core classes. [#695](https://github.com/xgi-org/xgi/pull/695) (@leotrs)
17+
* Performance: reduce import time by deferring heavy dependencies. [#692](https://github.com/xgi-org/xgi/pull/692) (@leotrs)
18+
* Migrate all seeded functions from global random state to local RNG instances. [#689](https://github.com/xgi-org/xgi/pull/689) (@leotrs)
19+
* Docs: document exception hierarchy in module docstring. [#691](https://github.com/xgi-org/xgi/pull/691) (@leotrs)
20+
* Migrate all seeded functions from global random state to local RNG instances. [#689](https://github.com/xgi-org/xgi/pull/689) (@leotrs)
21+
* Docs: document exception hierarchy in module docstring. [#691](https://github.com/xgi-org/xgi/pull/691) (@leotrs)
22+
* Migrate all seeded functions from global random state to local RNG instances. [#689](https://github.com/xgi-org/xgi/pull/689) (@leotrs)
23+
* Fix: remove deprecated edge methods from SimplicialComplex. [#696](https://github.com/xgi-org/xgi/pull/696) (@leotrs)
24+
* Docs: document exception hierarchy in module docstring. [#691](https://github.com/xgi-org/xgi/pull/691) (@leotrs)
25+
* Migrate all seeded functions from global random state to local RNG instances. [#689](https://github.com/xgi-org/xgi/pull/689) (@leotrs)
26+
* Define `__all__` across all subpackage `__init__.py` files. [#688](https://github.com/xgi-org/xgi/pull/688) (@leotrs)
27+
* Clean up exception hierarchy for v1.0. [#687](https://github.com/xgi-org/xgi/pull/687) (@leotrs)
28+
* Fix scipy FutureWarning in laplacian_matrix. [#685](https://github.com/xgi-org/xgi/pull/685) (@leotrs)
29+
330
## v0.10.1
431

532
* Fix slow test collection and matplotlib GUI popups. [#686](https://github.com/xgi-org/xgi/pull/686) (@leotrs)

xgi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from .readwrite import *
2424
from .stats import *
2525

26-
__version__ = "0.10.1"
26+
__version__ = "0.10.2"
2727

2828
__all__ = (
2929
core.__all__

0 commit comments

Comments
 (0)