Skip to content

Commit c60d78c

Browse files
bump to 5.0.1 (#742)
1 parent b48320c commit c60d78c

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,11 @@
33
Starting with v1.31.6, this file will contain a record of major features and updates made in each release of graph-notebook.
44

55
## Upcoming
6+
7+
## Release 5.0.1 (May 19, 2025)
68
- Locked numba dependency to 0.60.0 to avoid numpy conflict ([Link to PR](https://github.com/aws/graph-notebook/pull/735))
79
- Fixed library target for nbclassic nbextension for graph_notebook_widget ([Link to PR](https://github.com/aws/graph-notebook/pull/739))
10+
- Fix selected node highlights in force widget ([Link to PR](https://github.com/aws/graph-notebook/pull/741))
811

912
## Release 5.0.0 (April 8, 2025)
1013
- Upgrade project to Jupyterlab 4x ([Link to PR](https://github.com/aws/graph-notebook/pull/729))

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ python3 -m build .
429429

430430
You should now be able to find the built distribution at
431431

432-
`./dist/graph_notebook-5.0.0-py3-none-any.whl`
432+
`./dist/graph_notebook-5.0.1-py3-none-any.whl`
433433

434434
And use it by following the [installation](https://github.com/aws/graph-notebook#installation) steps, replacing
435435

@@ -440,7 +440,7 @@ pip install graph-notebook
440440
with
441441

442442
``` python
443-
pip install ./dist/graph_notebook-5.0.0-py3-none-any.whl --force-reinstall
443+
pip install ./dist/graph_notebook-5.0.1-py3-none-any.whl --force-reinstall
444444
```
445445

446446
## Contributing Guidelines

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend = "hatchling.build"
99

1010
[project]
1111
name = "graph-notebook"
12-
version = "5.0.0"
12+
version = "5.0.1"
1313
description = "Jupyter notebook extension to connect to graph databases"
1414
readme = "README.md"
1515
license = { file = "LICENSE" }

src/graph_notebook/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
SPDX-License-Identifier: Apache-2.0
44
"""
55

6-
__version__ = '5.0.0'
6+
__version__ = '5.0.1'

src/graph_notebook/widgets/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graph_notebook_widgets",
3-
"version": "5.0.0",
3+
"version": "5.0.1",
44
"author": "amazon",
55
"description": "A Custom Jupyter Library for rendering NetworkX MultiDiGraphs using vis-network",
66
"dependencies": {

0 commit comments

Comments
 (0)