Skip to content

Commit 3caaeff

Browse files
committed
Designate 0.3 release
1 parent a63bbb4 commit 3caaeff

File tree

2 files changed

+62
-1
lines changed

2 files changed

+62
-1
lines changed

CHANGELOG.md

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,64 @@
1+
# nx-parallel 0.3
2+
3+
We're happy to announce the release of nx-parallel 0.3!
4+
5+
## Enhancements
6+
7+
- Add parallel version of edge_betweenness_centrality ([#60](https://github.com/networkx/nx-parallel/pull/60)).
8+
- Adding a `pre-commit` hook to update `get_info` ([#55](https://github.com/networkx/nx-parallel/pull/55)).
9+
- ENH: Adding and documenting configs in nx-parallel ([#75](https://github.com/networkx/nx-parallel/pull/75)).
10+
11+
## Bug Fixes
12+
13+
- Ignoring functions in `utils` for the `get_info` dict ([#78](https://github.com/networkx/nx-parallel/pull/78)).
14+
- Adding ruff as a developer dependency ([#85](https://github.com/networkx/nx-parallel/pull/85)).
15+
16+
## Documentation
17+
18+
- Update release process ([#66](https://github.com/networkx/nx-parallel/pull/66)).
19+
- DOC: minor doc_string changes to check write access ([#70](https://github.com/networkx/nx-parallel/pull/70)).
20+
21+
## Infrastructure
22+
23+
- ENH: Adding and documenting configs in nx-parallel ([#75](https://github.com/networkx/nx-parallel/pull/75)).
24+
25+
## Maintenance
26+
27+
- Revisiting nxp algorithms ([#63](https://github.com/networkx/nx-parallel/pull/63)).
28+
- MAINT: Switching to setuptools ([#69](https://github.com/networkx/nx-parallel/pull/69)).
29+
- MAINT: updated readme with conda installation guide ([#71](https://github.com/networkx/nx-parallel/pull/71)).
30+
- Ignoring functions in `utils` for the `get_info` dict ([#78](https://github.com/networkx/nx-parallel/pull/78)).
31+
- Test on Python 3.13-dev ([#83](https://github.com/networkx/nx-parallel/pull/83)).
32+
- Chore/style cleanup utility functions ([#80](https://github.com/networkx/nx-parallel/pull/80)).
33+
- Clean up and bump deps, ruff, pre-commit ([#84](https://github.com/networkx/nx-parallel/pull/84)).
34+
- MAINT: Drop support for python 3.10, and update min supported networkx version to 3.4.1 ([#88](https://github.com/networkx/nx-parallel/pull/88)).
35+
- TST: Added tests checking entry_points discovery and config initialisation ([#89](https://github.com/networkx/nx-parallel/pull/89)).
36+
37+
## Contributors
38+
39+
7 authors added to this release (alphabetically):
40+
41+
- Aditi Juneja ([@Schefflera-Arboricola](https://github.com/Schefflera-Arboricola))
42+
- Dan Schult ([@dschult](https://github.com/dschult))
43+
- Derek Alexander ([@dPys](https://github.com/dPys))
44+
- Jakub Krajniak ([@jkrajniak](https://github.com/jkrajniak))
45+
- Jarrod Millman ([@jarrodmillman](https://github.com/jarrodmillman))
46+
- Mridul Seth ([@MridulS](https://github.com/MridulS))
47+
- Ratan Kulshreshtha ([@RatanShreshtha](https://github.com/RatanShreshtha))
48+
49+
8 reviewers added to this release (alphabetically):
50+
51+
- Aditi Juneja ([@Schefflera-Arboricola](https://github.com/Schefflera-Arboricola))
52+
- Dan Schult ([@dschult](https://github.com/dschult))
53+
- Derek Alexander ([@dPys](https://github.com/dPys))
54+
- Erik Welch ([@eriknw](https://github.com/eriknw))
55+
- Jakub Krajniak ([@jkrajniak](https://github.com/jkrajniak))
56+
- Jarrod Millman ([@jarrodmillman](https://github.com/jarrodmillman))
57+
- Mridul Seth ([@MridulS](https://github.com/MridulS))
58+
- Ross Barnowski ([@rossbar](https://github.com/rossbar))
59+
60+
_These lists are automatically generated, and may not be complete or may contain duplicates._
61+
162
# nx-parallel 0.2
263

364
We're happy to announce the release of nx-parallel 0.2!

nx_parallel/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
from .algorithms import *
44
from .interface import *
55

6-
__version__ = "0.3rc0.dev0"
6+
__version__ = "0.3"

0 commit comments

Comments
 (0)