Skip to content

Commit

Permalink
Designate 0.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jarrodmillman committed May 9, 2024
1 parent b07b89a commit daf8bac
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 1 deletion.
65 changes: 65 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,68 @@
# nx-parallel 0.2

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

## Enhancements

- parallel implementation for all_pairs_bellman_ford_path ([#14](https://github.com/networkx/nx-parallel/pull/14)).
- benchmarking infrastructure ([#24](https://github.com/networkx/nx-parallel/pull/24)).
- ENH : Adding `backend_info` entry point ([#27](https://github.com/networkx/nx-parallel/pull/27)).
- ENH : added `johnson` in `weighted.py` ([#37](https://github.com/networkx/nx-parallel/pull/37)).
- ENH : added `square_clustering` ([#34](https://github.com/networkx/nx-parallel/pull/34)).
- ENH : improved `all_pairs_bellman_ford_path` ([#49](https://github.com/networkx/nx-parallel/pull/49)).
- ENH : added `node_redundancy` in `bipartite` ([#45](https://github.com/networkx/nx-parallel/pull/45)).
- ENH : adding parallel implementations of `all_pairs_` algos ([#33](https://github.com/networkx/nx-parallel/pull/33)).
- [ENH, BUG] : added `time_tournament_is_strongly_connected` benchmark, renamed `tournament_is_strongly_connected` to `is_strongly_connected` ([#32](https://github.com/networkx/nx-parallel/pull/32)).
- ENH : Added `get_chunks` to `betweenness_centrality` and `create_iterables` in `utils` ([#29](https://github.com/networkx/nx-parallel/pull/29)).

## Bug Fixes

- BUG: moved `get_info` from `backend.py` to `_nx_parallel` ([#53](https://github.com/networkx/nx-parallel/pull/53)).
- BUG : included `_nx_parallel` in packages ([#54](https://github.com/networkx/nx-parallel/pull/54)).

## Documentation

- Update release process ([#21](https://github.com/networkx/nx-parallel/pull/21)).
- DOC: Adding CONTRIBUTING.md, updating readme, etc ([#46](https://github.com/networkx/nx-parallel/pull/46)).

## Maintenance

- replaced **networkx_plugin** with **networkx_backend** ([#25](https://github.com/networkx/nx-parallel/pull/25)).
- replaced networkx.plugins with networkx.backends and updated readme ([#26](https://github.com/networkx/nx-parallel/pull/26)).
- Sync up min python version with networkx main repo ([#31](https://github.com/networkx/nx-parallel/pull/31)).
- MAINT : updated `pre-commit-config.yaml` ([#35](https://github.com/networkx/nx-parallel/pull/35)).
- MAINT : added lint workflow test ([#28](https://github.com/networkx/nx-parallel/pull/28)).
- MAINT : styling fixes ([#38](https://github.com/networkx/nx-parallel/pull/38)).
- MAINT : style fix - 2 ([#40](https://github.com/networkx/nx-parallel/pull/40)).
- MAINT : added `default_benchmark_timeout` to `asv.conf.json` ([#43](https://github.com/networkx/nx-parallel/pull/43)).
- MAINT : removed `NETWORKX_GRAPH_CONVERT` ([#48](https://github.com/networkx/nx-parallel/pull/48)).
- MAINT: updating backend.get_info ([#47](https://github.com/networkx/nx-parallel/pull/47)).
- MAINT: renamed backend function keys ([#50](https://github.com/networkx/nx-parallel/pull/50)).
- MAINT: added script to update `_nx_parallel/__init__.py` ([#57](https://github.com/networkx/nx-parallel/pull/57)).
- MAINT: Renaming functions with a different name while dispatching ([#56](https://github.com/networkx/nx-parallel/pull/56)).
- MAINT: updated `README` and `_nx_parallel/__init__.py` ([#58](https://github.com/networkx/nx-parallel/pull/58)).
- MAINT: Added LICENSE and updated README ([#59](https://github.com/networkx/nx-parallel/pull/59)).
- Use pypi for tests ([#64](https://github.com/networkx/nx-parallel/pull/64)).

## Contributors

4 authors added to this release (alphabetically):

- Aditi Juneja ([@Schefflera-Arboricola](https://github.com/Schefflera-Arboricola))
- Dan Schult ([@dschult](https://github.com/dschult))
- Jarrod Millman ([@jarrodmillman](https://github.com/jarrodmillman))
- Mridul Seth ([@MridulS](https://github.com/MridulS))

5 reviewers added to this release (alphabetically):

- Aditi Juneja ([@Schefflera-Arboricola](https://github.com/Schefflera-Arboricola))
- Dan Schult ([@dschult](https://github.com/dschult))
- Jarrod Millman ([@jarrodmillman](https://github.com/jarrodmillman))
- Mridul Seth ([@MridulS](https://github.com/MridulS))
- Ross Barnowski ([@rossbar](https://github.com/rossbar))

_These lists are automatically generated, and may not be complete or may contain duplicates._

# nx-parallel 0.1

We're happy to announce the release of nx-parallel 0.1!
Expand Down
2 changes: 1 addition & 1 deletion nx_parallel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
from .interface import *
from .utils import *

__version__ = "0.2rc0.dev0"
__version__ = "0.2"

0 comments on commit daf8bac

Please sign in to comment.