File tree Expand file tree Collapse file tree 5 files changed +8
-5
lines changed Expand file tree Collapse file tree 5 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 3
3
Starting with v1.31.6, this file will contain a record of major features and updates made in each release of graph-notebook.
4
4
5
5
## Upcoming
6
+
7
+ ## Release 5.0.1 (May 19, 2025)
6
8
- Locked numba dependency to 0.60.0 to avoid numpy conflict ([ Link to PR] ( https://github.com/aws/graph-notebook/pull/735 ) )
7
9
- 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 ) )
8
11
9
12
## Release 5.0.0 (April 8, 2025)
10
13
- Upgrade project to Jupyterlab 4x ([ Link to PR] ( https://github.com/aws/graph-notebook/pull/729 ) )
Original file line number Diff line number Diff line change @@ -429,7 +429,7 @@ python3 -m build .
429
429
430
430
You should now be able to find the built distribution at
431
431
432
- ` ./dist/graph_notebook-5.0.0 -py3-none-any.whl `
432
+ ` ./dist/graph_notebook-5.0.1 -py3-none-any.whl `
433
433
434
434
And use it by following the [ installation] ( https://github.com/aws/graph-notebook#installation ) steps, replacing
435
435
@@ -440,7 +440,7 @@ pip install graph-notebook
440
440
with
441
441
442
442
``` 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
444
444
```
445
445
446
446
## Contributing Guidelines
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ build-backend = "hatchling.build"
9
9
10
10
[project ]
11
11
name = " graph-notebook"
12
- version = " 5.0.0 "
12
+ version = " 5.0.1 "
13
13
description = " Jupyter notebook extension to connect to graph databases"
14
14
readme = " README.md"
15
15
license = { file = " LICENSE" }
Original file line number Diff line number Diff line change 3
3
SPDX-License-Identifier: Apache-2.0
4
4
"""
5
5
6
- __version__ = '5.0.0 '
6
+ __version__ = '5.0.1 '
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " graph_notebook_widgets" ,
3
- "version" : " 5.0.0 " ,
3
+ "version" : " 5.0.1 " ,
4
4
"author" : " amazon" ,
5
5
"description" : " A Custom Jupyter Library for rendering NetworkX MultiDiGraphs using vis-network" ,
6
6
"dependencies" : {
You can’t perform that action at this time.
0 commit comments