Skip to content

Commit f0f1728

Browse files
bump to 5.0.2 (#757)
1 parent e7bfd09 commit f0f1728

File tree

5 files changed

+17
-12
lines changed

5 files changed

+17
-12
lines changed

ChangeLog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ Starting with v1.31.6, this file will contain a record of major features and upd
44

55
## Upcoming
66

7+
## Release 5.0.2 (Aug 19, 2025)
8+
- Support edgeOnlyLoad param for load magic ([Link to PR](https://github.com/aws/graph-notebook/pull/750))
9+
- Theme support for Graph Notebook Widgets ([Link to PR](https://github.com/aws/graph-notebook/pull/754))
10+
- Fix expected output in graph query tutorials ([Link to PR](https://github.com/aws/graph-notebook/pull/755))
11+
712
## Release 5.0.1 (May 19, 2025)
813
- Locked numba dependency to 0.60.0 to avoid numpy conflict ([Link to PR](https://github.com/aws/graph-notebook/pull/735))
914
- Fixed library target for nbclassic nbextension for graph_notebook_widget ([Link to PR](https://github.com/aws/graph-notebook/pull/739))

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.1-py3-none-any.whl`
432+
`./dist/graph_notebook-5.0.2-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.1-py3-none-any.whl --force-reinstall
443+
pip install ./dist/graph_notebook-5.0.2-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.1"
12+
version = "5.0.2"
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.1'
6+
__version__ = '5.0.2'

src/graph_notebook/widgets/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graph_notebook_widgets",
3-
"version": "5.0.1",
3+
"version": "5.0.2",
44
"author": "amazon",
55
"description": "A Custom Jupyter Library for rendering NetworkX MultiDiGraphs using vis-network",
66
"dependencies": {
@@ -12,7 +12,7 @@
1212
"vis-data": "7.1.4",
1313
"vis-network": "9.1.6",
1414
"vis-util": "5.0.3",
15-
"@jupyterlab/application": "^4.3.5"
15+
"@jupyterlab/application": "^4.3.5"
1616
},
1717
"devDependencies": {
1818
"@jupyterlab/builder": "^4.3.5",
@@ -60,7 +60,7 @@
6060
"stylelint-csstree-validator": "^3.0.0",
6161
"stylelint-prettier": "^4.0.0",
6262
"ts-loader": "^9.4.4",
63-
"typescript": "~5.0.4",
63+
"typescript": "~5.0.4",
6464
"webpack": "^5.88.2",
6565
"webpack-cli": "^5.1.4",
6666
"webpack-dev-server": "^4.15.1",
@@ -81,7 +81,7 @@
8181
"version": "^6.0.4",
8282
"requiredVersion": "^6.0.4"
8383
},
84-
"@jupyterlab/application": {
84+
"@jupyterlab/application": {
8585
"bundled": false,
8686
"singleton": true,
8787
"version": "^4.0.0",
@@ -115,7 +115,7 @@
115115
}
116116
},
117117
"jupyter": {
118-
"extension": "extension.js",
118+
"extension": "extension.js",
119119
"outputDir": "nbextension"
120120
},
121121
"keywords": [
@@ -127,10 +127,10 @@
127127
],
128128
"main": "lib/index.js",
129129
"types": "lib/index.d.ts",
130-
"engines": {
130+
"engines": {
131131
"node": ">=20.18.3",
132132
"npm": ">=10.8.2"
133-
},
133+
},
134134
"scripts": {
135135
"build": "npm run build:lib && npm run build:nbextension && npm run build:labextension:dev",
136136
"build:prod": "npm run clean && npm run build:lib && npm run build:nbextension && npm run build:labextension",
@@ -151,4 +151,4 @@
151151
"watch:nbextension": "webpack --watch --mode=development",
152152
"watch:labextension": "jupyter labextension watch ."
153153
}
154-
}
154+
}

0 commit comments

Comments
 (0)